We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8898f52 commit 94eced7Copy full SHA for 94eced7
1 file changed
.github/workflows/TestPWTCommands.yml
@@ -37,7 +37,7 @@ jobs:
37
- name: "Defining cache"
38
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
39
env:
40
- cache-name: cache-node-modules
+ cache-name: cache-pnpm-store
41
with:
42
path: ~/.local/pnpm/store
43
key: ${{ runner.os }}-${{ matrix.node }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
@@ -54,7 +54,10 @@ jobs:
54
version: 10
55
56
- name: "Where o where is the pnpm store?"
57
- run: echo "$(pnpm store path)"
+ run: |
58
+ storepath="$(pnpm store path)"
59
+ echo "The pnpm store is at: $storepath"
60
+ ls "$storepath"
61
62
- name: "Defining node version"
63
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
0 commit comments