From de5ca1f9baf502c702bfeb744e0e724728c5223c Mon Sep 17 00:00:00 2001 From: Marsel Shayhin Date: Thu, 21 Nov 2024 14:50:00 +0100 Subject: [PATCH] fix: fix auth origin variable in CI authjs test --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 50f81958..ce96f8de 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -134,5 +134,5 @@ jobs: # start prod-app and curl from it - run: "timeout 60 pnpm start & (sleep 45 && curl --fail localhost:$PORT)" env: - AUTH_ORIGIN: "http://localhost:3001" + AUTH_ORIGIN: "http://localhost:3001/api/auth" PORT: 3001