From 75700fbb5e2b1c1d600654d61aa3740bef016bca Mon Sep 17 00:00:00 2001 From: Savannah Savings Date: Thu, 21 May 2026 20:41:58 +0000 Subject: [PATCH] fix: increase timeout for preview server in lighthouse CI [CAR-937] Co-Authored-By: Paperclip --- .gitea/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index fd23cd9..3d359f7 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -87,9 +87,9 @@ jobs: npx playwright install --with-deps chromium - name: Start preview server run: | - npm run preview & - sleep 5 - npx wait-on http://localhost:4173/ --timeout 30000 + npm run preview -- --port 4173 & + sleep 10 + npx wait-on http://localhost:4173/ --timeout 60000 - name: Run Lighthouse CI run: | CHROME_PATH=$(find /home/runner/.cache/ms-playwright -name chrome -type f 2>/dev/null | head -1)