From 3def8a9685d2bbfa88886c51735dc6d6847041d9 Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Fri, 7 Feb 2025 00:20:31 +0800 Subject: [PATCH] ci: fix cypress installation issue on CI --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c1e4838f..d6249318 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 -- 2.39.5