Skip to content

deps(dev): bump eslint from 9.39.4 to 10.7.0 #215

deps(dev): bump eslint from 9.39.4 to 10.7.0

deps(dev): bump eslint from 9.39.4 to 10.7.0 #215

Workflow file for this run

name: Test
on:
push
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [20.x, 22.x]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- name: unit tests
run: npm test
- name: linting
run: npm run lint