Skip to content

Commit

Permalink
feat: Store videos and screenshots of the test runs to GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
CvdL-UM committed Apr 18, 2024
1 parent 14984e6 commit c08ee99
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/e2e-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,14 @@ jobs:
start: npm run dev, npx supabase start
wait-on: "http://localhost:3000, http://localhost:54323"
wait-on-timeout: 600
- uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots
if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn`
- uses: actions/upload-artifact@v4
with:
name: cypress-videos
path: cypress/videos
if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn`

0 comments on commit c08ee99

Please sign in to comment.