Uploading Cypress assets to Github (#2484)
This commit is contained in:
parent
04dc7b5afe
commit
f4a11eac7f
1 changed files with 14 additions and 0 deletions
14
.github/workflows/cypress.yml
vendored
14
.github/workflows/cypress.yml
vendored
|
@ -114,6 +114,20 @@ jobs:
|
|||
CYPRESS_RECORD_KEY: b8f1d15e-eab8-4ee7-8e44-c6d7cd8fc0eb
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Add Cypress videos artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
if: failure()
|
||||
with:
|
||||
name: cypress-videos
|
||||
path: assets/videos
|
||||
|
||||
- name: Add Cypress screenshots artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
if: failure()
|
||||
with:
|
||||
name: cypress-screenshots
|
||||
path: assets/screenshots
|
||||
|
||||
- name: Upload server logs
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue