Skip to content

Commit 93a322b

Browse files
committed
ci: upload Playwright tests' results even in PR builds
We do that in all other workflows that run the Playwright tests, and it is very helpful when diagnosing issues (especially the screenshots that are stored on failure). Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 61d0db4 commit 93a322b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,9 @@ jobs:
8282
- name: Run Playwright tests
8383
env:
8484
PLAYWRIGHT_TEST_URL: http://localhost:5000/
85-
run: npx playwright test --project=chrome
85+
run: npx playwright test --project=chrome
86+
- uses: actions/upload-artifact@v4
87+
if: always()
88+
with:
89+
name: playwright-report
90+
path: playwright-report/

0 commit comments

Comments
 (0)