Skip to content

Commit db1eaa0

Browse files
chore: pr workflow ordering change
1 parent 33ce74e commit db1eaa0

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/pull-request.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,17 @@ jobs:
1717
- name: Installing dependencies
1818
run: npm ci
1919

20-
- name: Running tests
21-
run: npm run test
20+
- name: Running typecheck
21+
continue-on-error: true
22+
run: npm run typecheck
2223

2324
- name: Running lint
25+
continue-on-error: true
2426
run: npm run lint
2527

26-
- name: Running typecheck
27-
run: npm run typecheck
28+
- name: Running tests
29+
continue-on-error: true
30+
run: npm run test
2831

2932
- name: Running build
3033
run: npm run build

0 commit comments

Comments
 (0)