ci(demo): pin pnpm 10.33.0 in deploy-demo
The repo root has no package.json, so pnpm/action-setup can't infer the version (it lives in web/package.json). Pin it explicitly. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
5248f3a464
commit
4261d90683
1 changed files with 5 additions and 0 deletions
5
.github/workflows/deploy-demo.yml
vendored
5
.github/workflows/deploy-demo.yml
vendored
|
|
@ -47,7 +47,12 @@ jobs:
|
|||
- name: Init pcbjam-shared submodule
|
||||
run: git submodule update --init --depth 1 web/pcbjam-shared
|
||||
|
||||
# Pin pnpm explicitly: the repo root has no package.json, so action-setup
|
||||
# can't infer the version from a packageManager field (it lives in
|
||||
# web/package.json). Keep in sync with web/package.json's packageManager.
|
||||
- uses: pnpm/action-setup@v4
|
||||
with:
|
||||
version: 10.33.0
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
|
|
|
|||
Loading…
Reference in a new issue