From 7eda689797aa4bdbf0ba4a4662dea1bb45e2e188 Mon Sep 17 00:00:00 2001 From: Gorka Date: Wed, 29 Jul 2026 14:08:36 -0300 Subject: [PATCH] ci: build frontends with --production in invite-gate and playwright suites The suites built the consoles and moonlight-pay in dev mode, but deploys ship --production builds. Minification-dependent breakage passed the gate twice: moonlight-pay 0.5.28 and 0.5.29 both rendered a black page in production while the dev-built gate stayed green. Build all three frontends with --production in both suites so the gate exercises the artifact that actually ships. Verified locally: invite gate 6/6 green with production builds across all three frontends. --- docker-compose.invite-gate.yml | 6 +++--- docker-compose.playwright.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docker-compose.invite-gate.yml b/docker-compose.invite-gate.yml index 86b0bec..620e0ba 100644 --- a/docker-compose.invite-gate.yml +++ b/docker-compose.invite-gate.yml @@ -222,7 +222,7 @@ services: echo "Installing dependencies..." deno install echo "Building..." - deno task build + deno task build -- --production echo "Serving on port 3020..." exec deno task serve environment: @@ -269,7 +269,7 @@ services: echo "Installing dependencies..." deno install echo "Building (includes WASM download)..." - deno task build + deno task build -- --production echo "Serving on port 3030..." exec deno task serve environment: @@ -315,7 +315,7 @@ services: echo "Installing dependencies..." deno install echo "Building..." - deno task build + deno task build -- --production echo "Serving on port 3050..." exec deno task serve environment: diff --git a/docker-compose.playwright.yml b/docker-compose.playwright.yml index 24b5b25..c8d6e1d 100644 --- a/docker-compose.playwright.yml +++ b/docker-compose.playwright.yml @@ -221,7 +221,7 @@ services: echo "Installing dependencies..." deno install echo "Building..." - deno task build + deno task build -- --production echo "Serving on port 3020..." exec deno task serve environment: @@ -268,7 +268,7 @@ services: echo "Installing dependencies..." deno install echo "Building (includes WASM download)..." - deno task build + deno task build -- --production echo "Serving on port 3030..." exec deno task serve environment: @@ -314,7 +314,7 @@ services: echo "Installing dependencies..." deno install echo "Building..." - deno task build + deno task build -- --production echo "Serving on port 3050..." exec deno task serve environment: