fix(ci): correct health check path for backend deployments

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 <noreply@anthropic.com>
This commit is contained in:
Wuesteon 2025-12-08 18:41:45 +01:00
parent 3485bf0873
commit aa8cbb1662

View file

@ -186,7 +186,7 @@ jobs:
*) PORT="5173" ;; # default SvelteKit port
esac
fi
HEALTH_PATH="/health"
HEALTH_PATH="/api/v1/health"
;;
esac