From 694d8c00ceed79e2000091f0a924f3acc367e5fa Mon Sep 17 00:00:00 2001 From: mini2024 Date: Sun, 6 Apr 2025 03:25:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9C=A8=E5=B7=A5=E4=BD=9C=E6=B5=81=E4=B8=AD?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=98=BE=E7=A4=BA=E7=BC=93=E5=AD=98=E5=91=BD?= =?UTF-8?q?=E4=B8=AD=E7=8A=B6=E6=80=81=E7=9A=84=E6=AD=A5=E9=AA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup-node-environment/action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup-node-environment/action.yml b/setup-node-environment/action.yml index a4beeea..8a84193 100644 --- a/setup-node-environment/action.yml +++ b/setup-node-environment/action.yml @@ -205,7 +205,11 @@ runs: # --frozen-lockfile # ERR_PNPM_NO_LOCKFILE  Cannot install with "frozen-lockfile" because pnpm-lock.yaml is absent pnpm store prune - echo "cache-hit: ${{ steps.cache-pnpm-restore.outputs.cache-hit }}" + + - name: 📊 显示缓存命中状态 + run: | + echo "cache-hit: ${{ steps.cache-pnpm-restore.outputs.cache-hit }}" + shell: bash - id: cache-pnpm-save if: always() && steps.cache-pnpm-restore.outputs.cache-hit == 'false'