From edca6a14b78b2887439f8ab09c5abb18a502986e Mon Sep 17 00:00:00 2001 From: resonic-user Date: Tue, 17 Jun 2025 20:56:00 +0000 Subject: [PATCH] e2e --- .github/workflows/cache-verify.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cache-verify.yml b/.github/workflows/cache-verify.yml index 6220d9961..90362f214 100644 --- a/.github/workflows/cache-verify.yml +++ b/.github/workflows/cache-verify.yml @@ -83,15 +83,12 @@ jobs: key: ${{ steps.cache-key.outputs.key }} restore-keys: | ci-unified-cache-${{ runner.os }}- - - # install dependencies - - name: Install and verify all dependencies + - name: Install all dependencies run: | - yarn install --frozen-lockfile - cd backend && yarn install --frozen-lockfile && cd .. - cd webapp && yarn install --frozen-lockfile && cd .. + yarn install + cd backend && yarn install && cd .. + cd webapp && yarn install && cd .. npx cypress verify || echo "Cypress verify failed (likely not yet installed)" - - name: Install cucumber-json-formatter if missing run: | if [ ! -f /opt/cucumber-json-formatter ]; then