Skip to content

Commit 5da750b

Browse files
chore: pr workflow ordering change
1 parent 05cfa3b commit 5da750b

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
@@ -29,14 +29,17 @@ jobs:
2929
- name: Installing dependencies
3030
run: npm ci
3131

32-
- name: Running tests
33-
run: npm run test
32+
- name: Running typecheck
33+
continue-on-error: true
34+
run: npm run typecheck
3435

3536
- name: Running lint
37+
continue-on-error: true
3638
run: npm run lint
3739

38-
- name: Running typecheck
39-
run: npm run typecheck
40+
- name: Running tests
41+
continue-on-error: true
42+
run: npm run test
4043

4144
- name: Running build
4245
run: npm run build

0 commit comments

Comments
 (0)