Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(ci): do not install cypress in jest workflow.
It is not required and attempting to install can cause failures
if the cypress server cannot be reached such as here:
https://github.com/nextcloud/text/actions/runs/12330192763/job/34415369232?pr=6780

Signed-off-by: Max <[email protected]>
  • Loading branch information
max-nextcloud committed Dec 14, 2024
commit 5aee32e0b7bce5bd7ac221b5aa921ad5376ea024
2 changes: 2 additions & 0 deletions .github/workflows/jest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ jobs:
run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"

- name: Install dependencies
env:
CYPRESS_INSTALL_BINARY: 0
run: npm ci

- name: Run jest
Expand Down
Loading