Skip to content

Commit

Permalink
CI: only lint using single version of NodeJS
Browse files Browse the repository at this point in the history
  • Loading branch information
slivingston committed Feb 13, 2025
1 parent 76a4972 commit abf0734
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
node: ['18.18', '20', '22.4']
node: ['18', '20', '22.4']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -19,6 +19,7 @@ jobs:
- name: Installation
run: yarn install --frozen-lockfile
- name: Lint
if: ${{ matrix.node == 18 }}
run: |
yarn format:check
yarn lint

0 comments on commit abf0734

Please # to comment.