build(deps-dev): bump eslint from 9.13.0 to 9.14.0 #3659
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node CI | |
on: | |
push: | |
branches: master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x, 22.x] | |
steps: | |
- uses: actions/checkout@v1 | |
- 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 -g npm | |
npm cache clean --force | |
npm ci | |
npm run build | |
npm run lint | |
npm test -- --forceExit #https://github.com/facebook/jest/issues/9982#issuecomment-758110298 | |
env: | |
CI: true | |
- name: Check spelling | |
uses: crate-ci/typos@master |