From 4261d906830d6d02fd586503789a82214a9b54d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20T=C3=B6rcsv=C3=A1ri?= Date: Fri, 19 Jun 2026 13:34:28 +0200 Subject: [PATCH] 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) --- .github/workflows/deploy-demo.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/deploy-demo.yml b/.github/workflows/deploy-demo.yml index acc02ef..110f247 100644 --- a/.github/workflows/deploy-demo.yml +++ b/.github/workflows/deploy-demo.yml @@ -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