Skip to content

Commit e41783f

Browse files
azuclaude
andauthored
fix: add pnpm install step to create-release-pr workflow (#120)
Lerna requires node_modules/.modules.yaml to parse pnpm lockfile. Without pnpm install, the workflow fails with: Could not find ".modules.yaml" at "/home/runner/work/editor/editor/node_modules/.modules.yaml" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <noreply@anthropic.com>
1 parent 752768f commit e41783f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/create-release-pr.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ jobs:
3535
node-version: 22
3636
cache: 'pnpm'
3737

38+
- name: Install dependencies
39+
run: pnpm install
40+
3841
- name: Update Version
3942
run: |
4043
git config --global user.email "${GIT_AUTHOR_EMAIL}"

0 commit comments

Comments
 (0)