We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent deadfce commit f306535Copy full SHA for f306535
.github/workflows/test.yml
@@ -166,4 +166,5 @@ jobs:
166
# Enable debug logging when "Re-run jobs with debug logging" is used in GitHub Actions UI
167
# This will output additional timing and path information to help diagnose timeout issues
168
RUNNER_DEBUG: ${{ runner.debug }}
169
- run: npm test -- src/${{ matrix.name }}/tests/
+ VITEST_FLAGS: ${{ matrix.name == 'article-api' && '--no-file-parallelism --maxWorkers=1' || '' }}
170
+ run: npm test -- $VITEST_FLAGS src/${{ matrix.name }}/tests/
0 commit comments