Skip to content

build(deps-dev): bump eslint from 9.11.0 to 9.11.1 #3550

build(deps-dev): bump eslint from 9.11.0 to 9.11.1

build(deps-dev): bump eslint from 9.11.0 to 9.11.1 #3550

Workflow file for this run

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