Skip to content

Remove eslint

Remove eslint #424

Workflow file for this run

name: Node CI
on:
push:
branches-ignore:
- "dependabot/**"
pull_request:
workflow_dispatch:
env:
FORCE_COLOR: 2
jobs:
test:
name: v${{ matrix.version }} @ ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version: [14, 16, 18, 20, 22]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 # v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run build
- run: npm run lint
- name: Run tests
run: npm run test