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 607d707 commit cdca646Copy full SHA for cdca646
.github/workflows/playwright.yml
@@ -15,6 +15,7 @@ jobs:
15
NODE_ENV: test
16
NEXTAUTH_SECRET: 'test-secret-for-ci-only'
17
NEXT_PUBLIC_EXAMPLE_VARIABLE: 'CI Test Variable'
18
+ PRIVATE_EXAMPLE_VARIABLE: 'Private CI Test Variable'
19
CI: true
20
21
steps:
@@ -29,13 +30,14 @@ jobs:
29
30
with:
31
browsers: 'chromium'
32
- - name: �️ Build Frontend App
33
+ - name: 🏗️ Build Frontend App
34
run: pnpm --filter @infinum/frontend build
35
shell: bash
36
37
- name: 🚀 Start Frontend App (Background)
38
run: |
- pnpm --filter @infinum/frontend start &
39
+ cd apps/frontend
40
+ node .next/standalone/server.js &
41
echo "FRONTEND_PID=$!" >> $GITHUB_ENV
42
43
0 commit comments