Skip to content

chore: update ESLint configuration and dependencies #74

chore: update ESLint configuration and dependencies

chore: update ESLint configuration and dependencies #74

Workflow file for this run

name: test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# LTS (20.x) and latest (22.x) only
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run lint
- run: npm run test