Skip to content

eslint cleanup

eslint cleanup #35

Workflow file for this run

name: MacOS
on: [push]
jobs:
build:
runs-on: macOS-latest
strategy:
matrix:
node-version: [16, 18, 20, 21]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm i
npm test
env:
CI: true