We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1be12ce commit 68b3806Copy full SHA for 68b3806
1 file changed
.github/workflows/build.yml
@@ -85,6 +85,17 @@ jobs:
85
run: HOME=/root vp test -c vite.config.browser.ts --run --browser ${{ matrix.browser }}
86
working-directory: tests
87
88
+ # Navigable HTML report (the `html` reporter writes it here — same as the
89
+ # local `e2e:report` script serves). Uploaded whether the tests pass or
90
+ # fail so the run is always inspectable.
91
+ - name: Upload e2e report (${{ matrix.browser }})
92
+ uses: actions/upload-artifact@v7
93
+ if: ${{ !cancelled() }}
94
+ with:
95
+ name: e2e-report-${{ matrix.browser }}
96
+ path: tests/playwright-report/
97
+ retention-days: 7
98
+
99
- name: Upload failure artifacts
100
uses: actions/upload-artifact@v7
101
if: ${{ failure() }}
0 commit comments