build(deps-dev): bump eslint from 9.14.0 to 9.19.0 #1041
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: CI | |
on: | |
push: | |
branches: | |
- master | |
- releases/* | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
if: always() | |
runs-on: ${{ matrix.os }} | |
concurrency: | |
group: ${{ github.workflow }}-build-${{ matrix.os }}--${{ github.ref }} | |
cancel-in-progress: true | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
steps: | |
- name: Setup repository | |
uses: actions/checkout@v4 | |
- name: Setup environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Install dependencies | |
run: npm install | |
- name: Bundle sources | |
run: npm run ci:build | |
- name: Run Hygiene Checks | |
run: npm run ci:lint | |
- name: Run unit tests | |
run: npm run ci:test | |
test: | |
name: Test on node@${{ matrix.node_version }} | |
if: always() | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-test-${{ matrix.node_version }}-${{ github.ref }} | |
cancel-in-progress: true | |
strategy: | |
fail-fast: false | |
matrix: | |
node_version: [18.18, 18, 20, 22, 23] | |
steps: | |
- name: Setup repository | |
uses: actions/checkout@v4 | |
- name: Setup environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node_version }} | |
- name: Install dependencies | |
run: npm install | |
- name: Bundle sources | |
run: npm run ci:build | |
- name: Run Hygiene Checks | |
run: npm run ci:lint | |
env: | |
DEBUG: eslint:eslint |