Skip to content

Commit 1be78a2

Browse files
Simplify workflow by removing pnpm caching
Caching was causing issues - removing for now to get workflow functional Co-Authored-By: Warp <agent@warp.dev>
1 parent 26104c5 commit 1be78a2

1 file changed

Lines changed: 1 addition & 15 deletions

File tree

.github/workflows/preview-deploy.yml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -33,22 +33,8 @@ jobs:
3333
with:
3434
version: 9
3535

36-
- name: Get pnpm store directory
37-
id: pnpm-cache
38-
shell: bash
39-
run: |
40-
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
41-
42-
- name: Setup pnpm cache
43-
uses: actions/cache@v4
44-
with:
45-
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
46-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
47-
restore-keys: |
48-
${{ runner.os }}-pnpm-store-
49-
5036
- name: Install dependencies
51-
run: pnpm install
37+
run: pnpm install --frozen-lockfile
5238

5339
- name: Build docs
5440
run: pnpm build

0 commit comments

Comments
 (0)