Created
July 28, 2021 22:47
-
-
Save yanfengliu/61ed3e43dc20ce8ff21c8ca35232f5ee to your computer and use it in GitHub Desktop.
Cypress GitHub Action to upload artifact
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- uses: actions/upload-artifact@v1 | |
if: failure() | |
with: | |
name: cypress-screenshots | |
path: cypress/screenshots | |
- uses: actions/upload-artifact@v1 | |
if: always() | |
with: | |
name: cypress-videos | |
path: cypress/videos |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment