This commit is contained in:
resonic-user 2025-06-16 10:17:33 +00:00
parent 0798ca8847
commit 5dc7a958e0

View File

@ -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
echo "❌ Service did not respond in time." && exit 1