diff options
author | skjnldsv <skjnldsv@protonmail.com> | 2025-01-03 10:28:49 +0100 |
---|---|---|
committer | skjnldsv <skjnldsv@protonmail.com> | 2025-01-03 10:41:30 +0100 |
commit | bc523f6441ca5fd2192a0506582ace9e23640294 (patch) | |
tree | c8d138d5c6e188b15825da2e345449fd18913c8f /.github | |
parent | 43b3ad13e085f031a909c79c9d5cc368c1da923b (diff) | |
download | nextcloud-server-fix/flaky-cypress.tar.gz nextcloud-server-fix/flaky-cypress.zip |
chore: enable cypress video recording in debug modefix/flaky-cypress
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cypress.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 8bfb9c00a5f..8d058acf81f 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -142,12 +142,14 @@ jobs: SPLIT: ${{ matrix.total-containers }} SPLIT_INDEX: ${{ matrix.containers == 'component' && 0 || matrix.containers }} - - name: Upload snapshots + - name: Upload snapshots and videos uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 if: always() with: - name: snapshots_${{ matrix.containers }} - path: cypress/snapshots + name: snapshots_videos_${{ matrix.containers }} + path: | + cypress/snapshots + cypress/videos - name: Extract NC logs if: failure() && matrix.containers != 'component' |