Skip to content

feat: drop ESLint v2, v3, v4, v5, v6 & v7 support #2268

feat: drop ESLint v2, v3, v4, v5, v6 & v7 support

feat: drop ESLint v2, v3, v4, v5, v6 & v7 support #2268

Workflow file for this run

name: 'Tests: packages'
on: [pull_request, push]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
permissions:
contents: read
jobs:
matrix:
runs-on: ubuntu-latest
outputs:
latest: ${{ steps.set-matrix.outputs.requireds }}
minors: ${{ steps.set-matrix.outputs.optionals }}
steps:
- uses: ljharb/actions/node/matrix@main
id: set-matrix
with:
type: 'majors'
preset: '^18.18.0 || ^20.9.0 || >=21.1.0'
versionsAsRoot: true
tests:
needs: [matrix]
name: 'packages'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ${{ fromJson(needs.matrix.outputs.latest) }}
eslint:
- 9
- 9.0.0
- 8
- 8.57.0
package:
- resolvers/node
- resolvers/webpack
# - memo-parser
# - utils
steps:
- uses: actions/checkout@v4
- uses: ljharb/actions/node/install@main
name: 'nvm install ${{ matrix.node-version }} && npm install'
env:
NPM_CONFIG_LEGACY_PEER_DEPS: false
ESLINT_VERSION: ${{ matrix.eslint }}
with:
node-version: ${{ matrix.node-version }}
after_install: npm run copy-metafiles && ./tests/dep-time-travel.sh && cd ${{ matrix.package }} && npm install
skip-ls-check: true
- run: cd ${{ matrix.package }} && npm run tests-only
- uses: codecov/[email protected]
packages:
name: 'packages: all tests'
needs: [tests]
runs-on: ubuntu-latest
steps:
- run: 'echo tests completed'