We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24b3384 commit 74aae73Copy full SHA for 74aae73
.github/workflows/ci.yml
@@ -23,6 +23,19 @@ jobs:
23
uses: cypress-io/github-action@v6
24
with:
25
start: npm start
26
+ # after the test run completes store videos and any screenshots
27
+ - uses: actions/upload-artifact@v4
28
+ # add the line below to store screenshots only on failures
29
+ if: failure()
30
+ with:
31
+ name: cypress-screenshots
32
+ path: cypress/screenshots
33
+ if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn`
34
35
36
+ name: cypress-videos
37
+ path: cypress/videos
38
39
ci:
40
runs-on: ubuntu-latest
41
steps:
0 commit comments