8000 fix: add `cypress install` to `prepare` script to fix pnpm 10 compatibility by haoqunjiang · Pull Request #679 · vuejs/create-vue · GitHub
[go: up one dir, main page]

Skip to content

fix: add cypress install to prepare script to fix pnpm 10 compatibility #679

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 6, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
ci: fix cypress installation issue on CI
  • Loading branch information
haoqunjiang committed Feb 6, 2025
commit a0505c0be88041e1fbb1efc6268ed3f9ed5bcc85
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,9 @@ jobs:
- name: Install dependencies in playground
working-directory: ./playground
run: pnpm install --no-frozen-lockfile
env:
# Skip Cypress installation temporarily, we'll install it later with cache
CYPRESS_INSTALL_BINARY: 0

# https://github.com/vitejs/vite/blob/main/.github/workflows/ci.yml#L62
# Install playwright's binary under custom directory to cache
Expand Down
0