We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1db9c73 commit 192ebaeCopy full SHA for 192ebae
.github/workflows/test.yml
@@ -166,4 +166,9 @@ 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/
+ run: |
170
+ if [ "${{ matrix.name }}" = "article-api" ] && [ "${{ github.repository }}" = "github/docs" ]; then
171
+ npm test -- --no-file-parallelism --maxWorkers=1 src/${{ matrix.name }}/tests/
172
+ else
173
+ npm test -- src/${{ matrix.name }}/tests/
174
+ fi
0 commit comments