We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fc5b10 commit de56a19Copy full SHA for de56a19
.github/workflows/validate.yml
@@ -56,7 +56,7 @@ jobs:
56
run: npm install --no-save --force @testing-library/dom@${{ matrix.testing-library-dom }}
57
58
- name: Install TypeScript v4
59
- if: ${{ startsWith(matrix.node, 12) }}
+ if: ${{ matrix.node == '12.x' }}
60
run: npm install --no-save --force typescript@4
61
62
- name: ▶️ Run validate script (without linting)
@@ -68,7 +68,7 @@ jobs:
68
run: npm run validate
69
70
- name: ▶️ Ensure docs are up-to-date
71
- if: ${{ matrix.eslint == 8 && matrix.node == 16 }}
+ if: ${{ matrix.eslint == 8 && matrix.node != '12.x' }}
72
run: npm run lint:generate-readme-table
73
74
- name: ⬆️ Upload coverage report
0 commit comments