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 3b18a40 commit bc1745cCopy full SHA for bc1745c
.github/workflows/integration.yml
@@ -46,8 +46,6 @@ jobs:
46
steps:
47
- name: Checkout code
48
uses: actions/checkout@v4
49
- with:
50
- ref: ${{ github.event.pull_request.head.sha || github.ref }}
51
52
- name: Debug - Check if secrets are loaded
53
run: |
@@ -81,6 +79,16 @@ jobs:
81
79
CYPRESS_USER_EMAIL="${{secrets.CYPRESS_USER_EMAIL}}" \
82
80
CYPRESS_USER_PASSWORD="${{secrets.CYPRESS_USER_PASSWORD}}" \
83
npm run test:cra
+ continue-on-error: true
+
84
+ - name: Upload CRA test artifacts
85
+ uses: actions/upload-artifact@v4
86
+ if: always()
87
+ with:
88
+ name: cra-test-results
89
+ path: |
90
+ cypress/screenshots/
91
+ retention-days: 30
92
93
- name: Run integration test (NextJS)
94
run: npm run test:nextjs
0 commit comments