Skip to content

Commit 657b55e

Browse files
committed
CCM-16572: try
1 parent 1060771 commit 657b55e

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/actions/build-docs/action.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,15 @@ runs:
1717
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
1818
with:
1919
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
2029
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
2130
with:
2231
node-version: ${{ inputs.node_version }}

0 commit comments

Comments
 (0)