From 4eeede6bcb406f1138e572d9287999accb5b9e9a Mon Sep 17 00:00:00 2001 From: Stavros Date: Thu, 16 Jul 2026 18:27:42 +0300 Subject: [PATCH] chore: run dev server in background to see why actions can't reach sslip --- e2e/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/package.json b/e2e/package.json index e58501a8..d4c6331b 100644 --- a/e2e/package.json +++ b/e2e/package.json @@ -5,10 +5,10 @@ "main": "index.js", "scripts": { "down": "docker compose -f docker-compose.e2e.yml down", - "up": "docker compose -f docker-compose.e2e.yml up --build --force-recreate --remove-orphans", + "up": "docker compose -f docker-compose.e2e.yml up --build --force-recreate --remove-orphans -d", "test": "playwright test", "report": "playwright show-report", - "netcheck": "curl http://tinyauth.127.0.0.1.sslip.io/api/healthz && curl localhost" + "netcheck": "cat /etc/resolv.conf && curl http://tinyauth.127.0.0.1.sslip.io/api/healthz && curl localhost" }, "keywords": [], "author": "",