Skip to content

Commit d8bd15d

Browse files
EdwardAngertclaude
andcommitted
fix: use --no-frozen-lockfile for PNPM install
Fix error 'Cannot install with frozen-lockfile because pnpm-lock.yaml is absent': 1. Replace ./scripts/pnpm_install.sh with direct pnpm command 2. Add --no-frozen-lockfile flag to skip lockfile validation 3. Update both unified and example workflows consistently 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 42a291b commit d8bd15d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/docs-reusable-example.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
cache: 'pnpm'
5959

6060
- name: Install dependencies
61-
run: ./scripts/pnpm_install.sh
61+
run: pnpm install --no-frozen-lockfile
6262

6363
- name: Install Vale
6464
uses: errata-ai/vale-action@2690bc95f0ed3cb5220492575af09c51b04fbea9 # v2

.github/workflows/docs-unified.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
cache: 'pnpm'
7474

7575
- name: Install dependencies
76-
run: ./scripts/pnpm_install.sh
76+
run: pnpm install --no-frozen-lockfile
7777

7878
- name: Install Vale (if needed)
7979
if: inputs.lint-vale == 'true'

0 commit comments

Comments
 (0)