Skip to content

Commit 2f681e2

Browse files
committed
fix: Remove --maxWorkers flag (conflicts with --runInBand)
- Jest doesn't allow both flags together - --runInBand alone runs tests serially
1 parent 0f474c4 commit 2f681e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ jobs:
3232
run: npm run build
3333

3434
- name: Run tests
35-
run: npm test -- --runInBand --maxWorkers=1
35+
run: npm test -- --runInBand
3636

3737
- name: Check test coverage
38-
run: npm run test:coverage -- --runInBand --maxWorkers=1
38+
run: npm run test:coverage -- --runInBand
3939

4040
- name: Upload coverage to Codecov
4141
if: matrix.node-version == '20.x'

0 commit comments

Comments
 (0)