aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/e2e-tests.yml (renamed from .github/workflows/playwright.yml)5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/playwright.yml b/.github/workflows/e2e-tests.yml
index 13d0949..ba50567 100644
--- a/.github/workflows/playwright.yml
+++ b/.github/workflows/e2e-tests.yml
@@ -8,6 +8,9 @@ jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ shard: [1/3, 2/3, 3/3]
steps:
- uses: actions/checkout@v3
- run: corepack enable
@@ -20,4 +23,4 @@ jobs:
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- name: Run Playwright tests
- run: pnpm exec playwright test
+ run: pnpm run test:e2e --shard=${{ matrix.shard }}