Skip to content

Commit 7966881

Browse files
committed
Disable file parallelism for dev tests
1 parent e7104dc commit 7966881

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/restart-dev-and-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
SHELL: /usr/bin/bash
1616

1717
jobs:
18-
test:
18+
restart-dev-and-test:
1919
runs-on: ubicloud-standard-8
2020
steps:
2121
- uses: actions/checkout@v3
@@ -37,7 +37,7 @@ jobs:
3737
run: pnpm run restart-dev-environment
3838

3939
- name: Run tests
40-
run: pnpm test
40+
run: pnpm test --no-file-parallelism
4141

4242
- name: Print dev server logs
4343
run: cat dev-server.log.untracked.txt

.github/workflows/setup-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
SHELL: /usr/bin/bash
1616

1717
jobs:
18-
test:
18+
setup-tests:
1919
runs-on: ubicloud-standard-8
2020
steps:
2121
- uses: actions/checkout@v3
@@ -45,5 +45,5 @@ jobs:
4545
tail: true
4646
wait-for: 120s
4747
log-output-if: true
48-
- run: pnpm test
48+
- run: pnpm test --no-file-parallelism
4949

0 commit comments

Comments
 (0)