Skip to content

Commit ed98cbe

Browse files
authored
Merge pull request #2494 from asfadmin/tyler/geo-tests
Geo test coverage
2 parents 3eba431 + f98d5d7 commit ed98cbe

5 files changed

Lines changed: 16896 additions & 5 deletions

File tree

.github/workflows/e2etest.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,16 @@ jobs:
1313
test:
1414
timeout-minutes: 60
1515
runs-on: ubuntu-latest
16-
environment: playwright
16+
environment:
17+
name: playwright
18+
deployment: false
1719
permissions:
1820
contents: read
21+
strategy:
22+
fail-fast: false
23+
matrix:
24+
shardIndex: [1, 2, 3, 4]
25+
shardTotal: [4]
1926
steps:
2027
- uses: actions/checkout@v5
2128
- uses: actions/setup-node@v5
@@ -30,10 +37,10 @@ jobs:
3037
- name: Install Playwright Browsers
3138
run: npx playwright install --with-deps
3239
- name: Run Playwright tests
33-
run: npm run e2e
40+
run: npm run e2e -- --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
3441
- uses: actions/upload-artifact@v4
3542
if: ${{ !cancelled() }}
3643
with:
37-
name: playwright-report
38-
path: playwright-report/
44+
name: blob-report-${{ matrix.shardIndex }}
45+
path: blob-report
3946
retention-days: 30

0 commit comments

Comments
 (0)