File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -56,13 +56,11 @@ jobs:
56
56
uses : ./.github/actions/setup-deps
57
57
58
58
- name : Test
59
- run : yarn test:ci
59
+ run : yarn test:ci:coverage
60
60
61
61
- name : Upload coverage to Codecov
62
62
uses : codecov/codecov-action@v4
63
63
64
- - name : Test in concurrent mode
65
- run : CONCURRENT_MODE=1 yarn test:ci
66
64
67
65
test-concurrent :
68
66
needs : [install-cache-deps]
Original file line number Diff line number Diff line change 25
25
"scripts" : {
26
26
"clean" : " del build" ,
27
27
"test" : " jest" ,
28
- "test:ci" : " jest --maxWorkers=2 --collectCoverage=true --coverage-provider=v8" ,
28
+ "test:ci:" : " jest --maxWorkers=2" ,
29
+ "test:ci:coverage" : " jest --maxWorkers=2 --collectCoverage=true --coverage-provider=v8" ,
29
30
"typecheck" : " tsc" ,
30
31
"copy-flowtypes" : " cp typings/index.flow.js build" ,
31
32
"lint" : " eslint src --cache" ,
You can’t perform that action at this time.
0 commit comments