From 6490e585ee5a2d288409cba3a20dfe329d70956c Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Sun, 8 Jun 2025 10:27:13 +0200 Subject: [PATCH] Run the server in 127.0.0.1 host --- .github/workflows/playwright.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 733fbc0..bb82e41 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -25,7 +25,7 @@ jobs: - name: Install Playwright Browsers run: pnpm exec playwright install --with-deps - name: Run the service that will be tested - run: node .next/standalone/server.js & + run: HOST=127.0.0.1 node .next/standalone/server.js & - name: Wait for the service to be ready run: npx wait-on http://127.0.0.1:3000 --timeout 30000 - name: Run Playwright tests