Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork366
[skip netlify] Update Bumped minor version of packages#10487
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| name:Playwright Tests | |
| on: | |
| push: | |
| branches:[main, beta, production] | |
| pull_request: | |
| branches:[main, beta, production] | |
| jobs: | |
| shard: | |
| timeout-minutes:15 | |
| runs-on:ubuntu-latest | |
| strategy: | |
| fail-fast:false | |
| matrix: | |
| shardIndex:[1, 2, 3, 4, 5, 6, 7, 8, 9, 10] | |
| shardTotal:[10] | |
| steps: | |
| -uses:actions/checkout@v4 | |
| -uses:actions/setup-node@v4 | |
| with: | |
| node-version:20 | |
| -name:Install dependencies | |
| uses:./.github/actions/pnpm-install | |
| -name:Run Build | |
| run:pnpm generate | |
| -name:Install Playwright Browsers | |
| run:pnpm exec playwright install --with-deps chromium | |
| -name:Run Playwright tests | |
| run:pnpm exec playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} | |
| -uses:actions/upload-artifact@v4 | |
| if:always() | |
| with: | |
| name:playwright-report-${{ matrix.shardIndex }} | |
| path:playwright-report/ | |
| retention-days:30 | |
| merge: | |
| runs-on:ubuntu-latest | |
| needs:shard | |
| steps: | |
| -name:Merge Artifacts | |
| uses:actions/upload-artifact/merge@v4 | |
| with: | |
| name:all-files | |
| pattern:playwright-report-* |