We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc2579e commit 351cdf7Copy full SHA for 351cdf7
.github/workflows/e2e.yml
@@ -21,13 +21,15 @@ jobs:
21
run: npm install -g pnpm && pnpm install
22
- name: Install Playwright Browsers
23
run: npx playwright install --with-deps
24
+ working-directory: examples/next
25
- name: Run Playwright tests
26
run: npx playwright test
27
28
env:
29
BASE_URL: ${{ github.event.client_payload.url }}
30
- uses: actions/upload-artifact@v4
31
if: ${{ !cancelled() }}
32
with:
33
name: playwright-report
- path: playwright-report/
34
+ path: examples/next/playwright-report/
35
retention-days: 30
0 commit comments