Skip to content

Commit

Permalink
ci: update matrix node version conditions (#364)
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Apr 19, 2024
1 parent 3fc5b10 commit de56a19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
run: npm install --no-save --force @testing-library/dom@${{ matrix.testing-library-dom }}

- name: Install TypeScript v4
if: ${{ startsWith(matrix.node, 12) }}
if: ${{ matrix.node == '12.x' }}
run: npm install --no-save --force typescript@4

- name: ▶️ Run validate script (without linting)
Expand All @@ -68,7 +68,7 @@ jobs:
run: npm run validate

- name: ▶️ Ensure docs are up-to-date
if: ${{ matrix.eslint == 8 && matrix.node == 16 }}
if: ${{ matrix.eslint == 8 && matrix.node != '12.x' }}
run: npm run lint:generate-readme-table

- name: ⬆️ Upload coverage report
Expand Down

0 comments on commit de56a19

Please sign in to comment.