From aa8cbb166235ac01e0bd37c054c8fbc4010eb83c Mon Sep 17 00:00:00 2001 From: Wuesteon Date: Mon, 8 Dec 2025 18:41:45 +0100 Subject: [PATCH] fix(ci): correct health check path for backend deployments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The health check was using /health but all NestJS backends set app.setGlobalPrefix('api/v1'), so the actual endpoint is /api/v1/health. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/cd-staging-tagged.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd-staging-tagged.yml b/.github/workflows/cd-staging-tagged.yml index a77f63f3e..45a1c201f 100644 --- a/.github/workflows/cd-staging-tagged.yml +++ b/.github/workflows/cd-staging-tagged.yml @@ -186,7 +186,7 @@ jobs: *) PORT="5173" ;; # default SvelteKit port esac fi - HEALTH_PATH="/health" + HEALTH_PATH="/api/v1/health" ;; esac