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