From 148121c9d41ca6061140101a0b6f7390154ea277 Mon Sep 17 00:00:00 2001 From: Jason Woltje Date: Tue, 3 Feb 2026 20:16:13 -0600 Subject: [PATCH] fix: Make lint and test steps blocking in CI Remove || true from lint and test steps to enforce quality gates. Tests and linting must pass for builds to succeed. This prevents regressions from being merged to develop. --- .woodpecker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index e16a089..5eee991 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -34,7 +34,7 @@ steps: SKIP_ENV_VALIDATION: "true" commands: - *use_deps - - pnpm lint || true # Non-blocking while fixing legacy code + - pnpm lint depends_on: - install when: @@ -66,7 +66,7 @@ steps: SKIP_ENV_VALIDATION: "true" commands: - *use_deps - - pnpm test || true # Non-blocking while fixing legacy tests + - pnpm test depends_on: - prisma-generate