From adeb3ec40926a9d0b26fe62b458f55f10642d7fa Mon Sep 17 00:00:00 2001 From: Ivan Banov Date: Tue, 14 Jul 2026 15:45:05 +0200 Subject: [PATCH] fix(ci): route deploy-benchmark through the shared ci-setup action Same pnpm/action-setup version mismatch as #42, in a second place: this workflow had its own inline pnpm+node+install steps, duplicating (and drifting from) ci-setup's, with a hardcoded pnpm version that never got that fix. Routing it through ./.github/actions/ci-setup instead of duplicating those steps means there's now exactly one place a future pnpm bump needs to touch. --- .github/workflows/deploy-benchmark.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/deploy-benchmark.yml b/.github/workflows/deploy-benchmark.yml index faad665..88ad315 100644 --- a/.github/workflows/deploy-benchmark.yml +++ b/.github/workflows/deploy-benchmark.yml @@ -20,18 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - - uses: pnpm/action-setup@v4 - with: - version: 10.20.0 - - - uses: actions/setup-node@v4 - with: - node-version: 24 - cache: pnpm - - - name: Install dependencies - run: pnpm install --frozen-lockfile + - uses: ./.github/actions/ci-setup - name: Build demo # The canonical demo ships with the docs site at