chore(deps): update dependency @types/node to v20.16.13 #33
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 compatibility" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check-compatibility: | |
name: 'Check compatibility' | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [20, 22] | |
eslint: [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: Install dependencies | |
run: pnpm install | |
- 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 |