From f82966ff0666d90dad435b9498ee287c4e7e2884 Mon Sep 17 00:00:00 2001 From: resonic-user Date: Tue, 17 Jun 2025 16:29:00 +0000 Subject: [PATCH] v --- .github/workflows/cache-verify.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cache-verify.yml b/.github/workflows/cache-verify.yml index e2a5c53dd..77e88d858 100644 --- a/.github/workflows/cache-verify.yml +++ b/.github/workflows/cache-verify.yml @@ -120,6 +120,9 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - name: Ensure directory structure exists + run: mkdir -p backend webapp cypress + - name: Restore CI cache uses: actions/cache/restore@v4 with: @@ -133,7 +136,6 @@ jobs: restore-keys: | ci-all-cache-${{ runner.os }}- - # --- Checks --- - name: Check backend/node_modules run: | [ -d backend/node_modules ] && [ -n "$(ls -A backend/node_modules)" ] || (echo "❌ backend/node_modules missing" && exit 1) @@ -160,7 +162,6 @@ jobs: run: | [ -x /opt/cucumber-json-formatter ] && /opt/cucumber-json-formatter --help || (echo "❌ Formatter missing" && exit 1) - # --- Summary --- - name: CI Cache Health Summary run: | echo "📦 CI Cache Health Summary:" @@ -190,7 +191,6 @@ jobs: echo "⚠️ Partial cache – some installs might have been required" fi - consolidate-environment: runs-on: ubuntu-latest needs: [build-images, cache-environment]