diff options
author | Raphael Kabo <raphaelkabo@hey.com> | 2023-10-06 16:50:51 +0100 |
---|---|---|
committer | Raphael Kabo <raphaelkabo@hey.com> | 2023-10-06 16:50:51 +0100 |
commit | 722d54e5ae8957436818b14e7aea613b19b12d28 (patch) | |
tree | 26104aa7f2717ea7e8f69734a2181d456f264481 | |
parent | 0549a34053f43f6be73c5187a930e357ef493ba3 (diff) |
ci: upload screenshots on failure
-rw-r--r-- | .github/workflows/ci.yaml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 45f0177..087d25e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -65,3 +65,10 @@ jobs: with: start: pnpm start browser: chrome + + - name: Upload screenshots + uses: actions/upload-artifact@v3 + if: failure() + with: + name: cypress-screenshots + path: cypress/screenshots |