From 5dc7a958e086cdc75ccc749338b4466aefc0bc90 Mon Sep 17 00:00:00 2001 From: resonic-user Date: Mon, 16 Jun 2025 10:17:33 +0000 Subject: [PATCH] e2e --- .github/workflows/cache-verify.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cache-verify.yml b/.github/workflows/cache-verify.yml index b2b20d7a7..f1e5a2bb4 100644 --- a/.github/workflows/cache-verify.yml +++ b/.github/workflows/cache-verify.yml @@ -43,7 +43,12 @@ jobs: node-modules- - name: Show cache hit status - run: echo "Cache hit: ${{ steps.restore-cache.outputs.cache-hit }}" + run: | + if [[ "${{ steps.restore-cache.outputs.cache-hit }}" == "true" ]]; then + echo "✅ Cache was hit!" + else + echo "❌ Cache was missed." + fi - name: Install backend deps run: | @@ -76,4 +81,4 @@ jobs: echo "Attempt $i failed. Retrying..." sleep 2 done - echo "❌ Service did not respond in time." && exit 1 \ No newline at end of file + echo "❌ Service did not respond in time." && exit 1