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 99b43a5 commit 6c549d8Copy full SHA for 6c549d8
.github/workflows/e2e-playwright.yml
@@ -53,6 +53,14 @@ jobs:
53
54
- name: Run tests with ENV=prod
55
working-directory: ./e2e-playwright
56
- run: ENV=prod HEAD=false BASEURL=http://localhost:8080 npm run test
+ run: ENV=prod HEAD=false BASEURL=http://localhost:8080 npm run test || exit 1
57
+
58
+ - name: Upload report
59
+ if: failure()
60
+ uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # infered from @v4
61
+ with:
62
+ name: playwright-results
63
+ path: ./e2e-playwright/test-results/
64
+ retention-days: 7
65
66
0 commit comments