From ec76bc25281083475f477cce4e71f8586772dd28 Mon Sep 17 00:00:00 2001 From: vikingowl Date: Tue, 28 Apr 2026 14:26:50 +0200 Subject: [PATCH] fix(ci): cd web once in check step (cwd persists across commands) --- .woodpecker/web.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.woodpecker/web.yaml b/.woodpecker/web.yaml index e1a62f6..58208d5 100644 --- a/.woodpecker/web.yaml +++ b/.woodpecker/web.yaml @@ -9,9 +9,10 @@ steps: check: image: node:25-alpine commands: + - cd web - npm install -g pnpm@10 - - cd web && pnpm install --frozen-lockfile - - cd web && pnpm check + - pnpm install --frozen-lockfile + - pnpm check # Build and push immutable SHA-tagged image on main branch only. # See backend.yaml for the reproducible-build TODO.