We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1060771 commit 657b55eCopy full SHA for 657b55e
1 file changed
.github/actions/build-docs/action.yml
@@ -17,6 +17,15 @@ runs:
17
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
18
with:
19
run_install: false
20
+ - name: Verify PNPM Cache Directory
21
+ run: |
22
+ PNPM_STORE_PATH="$( pnpm store path --silent )"
23
+ if [ ! -d "$PNPM_STORE_PATH" ]; then
24
+ echo "PNPM store directory does not exist, creating it."
25
+ mkdir -p "$PNPM_STORE_PATH"
26
+ else
27
+ echo "PNPM store directory exists."
28
+ fi
29
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
30
31
node-version: ${{ inputs.node_version }}
0 commit comments