Skip to content

Remove map method in favor of Array.prototype.map #50

Remove map method in favor of Array.prototype.map

Remove map method in favor of Array.prototype.map #50

Workflow file for this run

name: run-checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Test
run: npm test