We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33ce74e commit db1eaa0Copy full SHA for db1eaa0
.github/workflows/pull-request.yml
@@ -17,14 +17,17 @@ jobs:
17
- name: Installing dependencies
18
run: npm ci
19
20
- - name: Running tests
21
- run: npm run test
+ - name: Running typecheck
+ continue-on-error: true
22
+ run: npm run typecheck
23
24
- name: Running lint
25
26
run: npm run lint
27
- - name: Running typecheck
- run: npm run typecheck
28
+ - name: Running tests
29
30
+ run: npm run test
31
32
- name: Running build
33
run: npm run build
0 commit comments