From ae8e06c7b0acdbac4dceb20c1e7ab90f2a45d0af Mon Sep 17 00:00:00 2001 From: vikingowl Date: Tue, 28 Apr 2026 15:31:13 +0200 Subject: [PATCH] fix(ci): revert corepack on node:25-alpine (no longer bundled) --- .woodpecker/web.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.woodpecker/web.yaml b/.woodpecker/web.yaml index 0394cdb..95aa744 100644 --- a/.woodpecker/web.yaml +++ b/.woodpecker/web.yaml @@ -10,7 +10,7 @@ steps: image: node:25-alpine commands: - cd web - - corepack enable + - npm install -g pnpm@10 - pnpm install --frozen-lockfile check: @@ -18,7 +18,7 @@ steps: depends_on: [install] commands: - cd web - - corepack enable + - npm install -g pnpm@10 - pnpm check # Build and push immutable SHA-tagged image on main branch only.