Update ESLint to v9, drop support for Node.js v16 #4187
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 | |
- pull_request | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: | |
- 20 | |
- 18 | |
os: | |
- ubuntu-latest | |
- windows-latest | |
# Even numbers of node-version | |
# include: | |
# - os: ubuntu-latest | |
# node-version: 18 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install --legacy-peer-deps | |
- run: npx ava | |
lint-test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
# Locked due to the difference of `zlib.gzipSync()` between Node.js versions | |
node-version: 20 | |
- run: npm install --legacy-peer-deps | |
- run: npm run lint | |
- run: npx del-cli test/snapshots --verbose | |
# Force update snapshots, https://github.com/avajs/ava/discussions/2754 | |
- run: npx c8 ava --update-snapshots | |
env: | |
AVA_FORCE_CI: not-ci | |
- run: git diff --exit-code | |
- uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: true | |
files: coverage/lcov.info | |
token: ${{ secrets.CODECOV_TOKEN }} | |
run-rules-on-codebase: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- run: npm install --legacy-peer-deps | |
- run: npm run run-rules-on-codebase | |
integration: | |
name: Integration test (${{ matrix.group }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
group: | |
- "1" | |
- "2" | |
- "3" | |
- "4" | |
- "5" | |
- "6" | |
- "7" | |
- "8" | |
- "9" | |
env: | |
TIMING: 1 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- run: npm install --legacy-peer-deps | |
- run: npm run integration -- --group ${{ matrix.group }} |