Skip to content

chore(deps-dev): bump eslint from 9.21.0 to 9.24.0 (#54) #123

chore(deps-dev): bump eslint from 9.21.0 to 9.24.0 (#54)

chore(deps-dev): bump eslint from 9.21.0 to 9.24.0 (#54) #123

Workflow file for this run

name: Test with mocha
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
# https://nodejs.org/en/about/previous-releases#release-schedule
# https://github.com/actions/setup-node?tab=readme-ov-file#supported-version-syntax
node-version: [18.x, 20.x, 22.x, 23.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Lint and test
run: |
npm ci
npm run check-dependencies
npm run lint
npm run check-dts
npm t