From 41da374d9363deb20fa0936d8d4d629caa5428bb Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sun, 7 Sep 2025 16:23:24 +0200 Subject: [PATCH] Fix github CI --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 993ebfb6..e9ffb88f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,10 @@ jobs: - name: Run E2E tests run: | - NEXT_PUBLIC_API_URL=localhost:8088 NEXT_PUBLIC_FIREBASE_ENV=PROD yarn --cwd=web serve & + NEXT_PUBLIC_API_URL=localhost:8088 \ + NEXT_PUBLIC_FIREBASE_ENV=PROD \ + NEXT_PUBLIC_FIREBASE_API_KEY=${{ secrets.NEXT_PUBLIC_FIREBASE_API_KEY }} \ + yarn --cwd=web serve & npx wait-on http://localhost:3000 npx playwright test tests/playwright SERVER_PID=$(fuser -k 3000/tcp)