Skip to content

Commit 3c95fe8

Browse files
committed
fix: Combine test and coverage steps to reduce CI time
- Run tests only once with coverage enabled - Eliminates duplicate 10-minute test execution - Should prevent worker timeouts by halving total test time
1 parent 10d4a3a commit 3c95fe8

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,7 @@ jobs:
3131
- name: Build
3232
run: npm run build
3333

34-
- name: Run tests
35-
run: npm test -- --maxWorkers=1
36-
37-
- name: Check test coverage
34+
- name: Run tests with coverage
3835
run: npm run test:coverage -- --maxWorkers=1
3936

4037
- name: Upload coverage to Codecov

0 commit comments

Comments
 (0)