Skip to content

Commit 4cf9b4e

Browse files
committed
chore: tweaks
1 parent 2cbcc4d commit 4cf9b4e

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/ci.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,11 @@ jobs:
5656
uses: ./.github/actions/setup-deps
5757

5858
- name: Test
59-
run: yarn test:ci
59+
run: yarn test:ci:coverage
6060

6161
- name: Upload coverage to Codecov
6262
uses: codecov/codecov-action@v4
6363

64-
- name: Test in concurrent mode
65-
run: CONCURRENT_MODE=1 yarn test:ci
6664

6765
test-concurrent:
6866
needs: [install-cache-deps]

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
"scripts": {
2626
"clean": "del build",
2727
"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",
2930
"typecheck": "tsc",
3031
"copy-flowtypes": "cp typings/index.flow.js build",
3132
"lint": "eslint src --cache",

0 commit comments

Comments
 (0)