Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,9 @@ jobs:
# Enable debug logging when "Re-run jobs with debug logging" is used in GitHub Actions UI
# This will output additional timing and path information to help diagnose timeout issues
RUNNER_DEBUG: ${{ runner.debug }}
run: npm test -- src/${{ matrix.name }}/tests/
run: |
if [ "${{ matrix.name }}" = "article-api" ] && [ "${{ github.repository }}" = "github/docs" ]; then
npm test -- --no-file-parallelism --maxWorkers=1 src/${{ matrix.name }}/tests/
else
npm test -- src/${{ matrix.name }}/tests/
fi
Loading