From b136241b063df881b2e8d71156128c7098e18013 Mon Sep 17 00:00:00 2001 From: resonic-user Date: Mon, 16 Jun 2025 10:26:22 +0000 Subject: [PATCH] v --- .github/workflows/cache-verify.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cache-verify.yml b/.github/workflows/cache-verify.yml index 89e51e8f2..e555d1434 100644 --- a/.github/workflows/cache-verify.yml +++ b/.github/workflows/cache-verify.yml @@ -18,7 +18,8 @@ jobs: env: LOCK_HASH: ${{ hashFiles('backend/yarn.lock', 'webapp/yarn.lock') }} run: echo "key=node-modules-${{ runner.os }}-${{ env.LOCK_HASH }}" >> $GITHUB_OUTPUT - - id: restore + - name: Restore node_modules cache + id: cache-restore uses: actions/cache@v4 with: path: | @@ -28,7 +29,7 @@ jobs: restore-keys: | node-modules-${{ runner.os }}- node-modules- - - run: echo "Cache: ${{ steps.restore.outputs.cache-hit }}" + - run: echo "Cache: ${{ steps.cache-restore.outputs.cache-hit }}" - run: cd backend && yarn install && yarn build - run: cd webapp && yarn install && yarn build