Skip to content

Commit 50935f5

Browse files
committed
Run more checks in unit-tests job, even when previous checks failed
1 parent c9c99fc commit 50935f5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/pr-checks.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,17 +55,20 @@ jobs:
5555
run: .github/workflows/script/check-js.sh
5656

5757
- name: Verify PR checks up to date
58+
if: always()
5859
run: .github/workflows/script/verify-pr-checks.sh
5960

6061
- name: Run unit tests
62+
if: always()
6163
run: npm test
6264

6365
- name: Run pr-checks tests
66+
if: always()
6467
working-directory: pr-checks
6568
run: python -m unittest discover
6669

6770
- name: Lint
68-
if: matrix.os != 'windows-latest'
71+
if: always() && matrix.os != 'windows-latest'
6972
run: npm run lint-ci
7073

7174
- name: Upload sarif

0 commit comments

Comments
 (0)