We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a36d87 commit e4d1e9dCopy full SHA for e4d1e9d
1 file changed
.github/workflows/ci-and-publish.yml
@@ -61,6 +61,16 @@ jobs:
61
pnpm --version
62
echo "::endgroup::"
63
64
+ - name: Configure pnpm store for actions cache
65
+ shell: bash
66
+ run: |
67
+ echo "::group::Configure pnpm store path (~/.pnpm-store)"
68
+ PNPM_STORE_DIR="$HOME/.pnpm-store"
69
+ mkdir -p "$PNPM_STORE_DIR"
70
+ pnpm config set store-dir "$PNPM_STORE_DIR"
71
+ echo "pnpm store-dir => $(pnpm config get store-dir)"
72
+ echo "::endgroup::"
73
+
74
- name: Set up Node.js
75
uses: actions/setup-node@v4
76
with:
0 commit comments