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 f3840c3 commit bdec141Copy full SHA for bdec141
.github/workflows/test.yml
@@ -49,6 +49,24 @@ jobs:
49
spec: packages/${{ matrix.spec }}
50
install: false
51
52
+ # Upload Cypress screenshots if tests fail
53
+ - name: Upload Cypress screenshots
54
+ if: failure()
55
+ uses: actions/upload-artifact@v4
56
+ with:
57
+ name: cypress-screenshots-${{ matrix.react }}
58
+ path: cypress/screenshots
59
+ if-no-files-found: ignore
60
+
61
+ # Always upload Cypress videos
62
+ - name: Upload Cypress videos
63
64
65
66
+ name: cypress-videos-${{ matrix.react }}
67
+ path: cypress/videos
68
69
70
- uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # v2.3.6
71
if: ${{ inputs.reportCoverage && matrix.react == '19' }}
72
with:
0 commit comments