Skip to content

Commit 94eced7

Browse files
committed
Does the pnpm store exist?
1 parent 8898f52 commit 94eced7

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/TestPWTCommands.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: "Defining cache"
3838
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
3939
env:
40-
cache-name: cache-node-modules
40+
cache-name: cache-pnpm-store
4141
with:
4242
path: ~/.local/pnpm/store
4343
key: ${{ runner.os }}-${{ matrix.node }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
@@ -54,7 +54,10 @@ jobs:
5454
version: 10
5555

5656
- name: "Where o where is the pnpm store?"
57-
run: echo "$(pnpm store path)"
57+
run: |
58+
storepath="$(pnpm store path)"
59+
echo "The pnpm store is at: $storepath"
60+
ls "$storepath"
5861
5962
- name: "Defining node version"
6063
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0

0 commit comments

Comments
 (0)