We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2f48fc commit 41da374Copy full SHA for 41da374
.github/workflows/ci.yml
@@ -47,7 +47,10 @@ jobs:
47
48
- name: Run E2E tests
49
run: |
50
- NEXT_PUBLIC_API_URL=localhost:8088 NEXT_PUBLIC_FIREBASE_ENV=PROD yarn --cwd=web serve &
+ NEXT_PUBLIC_API_URL=localhost:8088 \
51
+ NEXT_PUBLIC_FIREBASE_ENV=PROD \
52
+ NEXT_PUBLIC_FIREBASE_API_KEY=${{ secrets.NEXT_PUBLIC_FIREBASE_API_KEY }} \
53
+ yarn --cwd=web serve &
54
npx wait-on http://localhost:3000
55
npx playwright test tests/playwright
56
SERVER_PID=$(fuser -k 3000/tcp)
0 commit comments