ESLint 9 + compatibility check #2
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: "Check package compatibility" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check-compatibility: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [18, 20, 22] | |
eslint: [8, 9] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Enable corepack | |
run: corepack enable | |
- uses: actions/setup-node@v4 | |
name: Setup node | |
with: | |
cache: pnpm | |
node-version: ${{ matrix.node }} | |
- name: Override ESLint | |
working-directory: apps/compatibility-check | |
run: pnpm install -D eslint@${{ matrix.eslint }} | |
- name: Lint project | |
working-directory: apps/compatibility-check | |
run: pnpm run lint |