mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
Merge pull request #50028 from nextcloud/backport/50025/stable30
This commit is contained in:
commit
a86197a4a0
2 changed files with 7 additions and 3 deletions
6
.github/workflows/cypress.yml
vendored
6
.github/workflows/cypress.yml
vendored
|
|
@ -139,8 +139,10 @@ jobs:
|
|||
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
|
||||
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'
|
||||
|
|
|
|||
|
|
@ -34,8 +34,10 @@ export default defineConfig({
|
|||
// Needed to trigger `after:run` events with cypress open
|
||||
experimentalInteractiveRunEvents: true,
|
||||
|
||||
// disabled if running in CI but enabled in debug mode
|
||||
video: !process.env.CI || !!process.env.RUNNER_DEBUG,
|
||||
|
||||
// faster video processing
|
||||
video: !process.env.CI,
|
||||
videoCompression: false,
|
||||
|
||||
// Prevent elements to be scrolled under a top bar during actions (click, clear, type, etc). Default is 'top'.
|
||||
|
|
|
|||
Loading…
Reference in a new issue