Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ jobs:
strategy:
fail-fast: false
matrix:
shard: [1, 2, 3]
shard: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand Down Expand Up @@ -276,14 +276,14 @@ jobs:
# Verify coverage is enabled
curl -s http://localhost:8766/coverage.php?action=status || echo "Coverage endpoint not responding"

- name: Run E2E tests (shard ${{ matrix.shard }}/3)
- name: Run E2E tests (shard ${{ matrix.shard }}/10)
env:
COMPOSE_PROFILES: e2e
run: |
docker compose run --rm \
-e E2E_BASE_URL=http://httpd-e2e:80 \
-e CI=true \
app-e2e npx playwright test --shard=${{ matrix.shard }}/3 -x
app-e2e npx playwright test --shard=${{ matrix.shard }}/10 -x

- name: Collect E2E coverage
if: always()
Expand Down
Loading