Skip to content

Commit e9d1d5f

Browse files
committed
integration with -j1
1 parent d7e6d76 commit e9d1d5f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/all-test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,5 +112,10 @@ jobs:
112112
shell: bash
113113
- name: Run tests
114114
if: steps.check_test_dir.outputs.exists == 'true'
115-
run: dart test --run-skipped
115+
run: |
116+
if [[ "${{ matrix.package }}" == "pub_integration" ]]; then
117+
dart test -j 1 --run-skipped
118+
else
119+
dart test --run-skipped
120+
fi
116121
working-directory: pkg/${{matrix.package}}

0 commit comments

Comments
 (0)