Skip to content

Commit 303249b

Browse files
committed
update tests
1 parent 4b03994 commit 303249b

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

.github/workflows/playwright.yml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,23 @@ jobs:
3434
run: pnpm --filter @infinum/frontend build
3535
shell: bash
3636

37-
- name: 🚀 Start Frontend App (Background)
37+
- name: � Debug Build Output
3838
run: |
3939
echo "📂 Current directory:" && pwd
40-
echo "📁 Listing files recursively:" && tree -L 3 || ls -R
4140
cd apps/frontend
42-
echo "📂 Now inside apps/frontend:" && pwd
43-
echo "📁 Files here:" && ls -la
44-
node .next/standalone/server.js &
41+
echo "📁 Checking .next directory structure:"
42+
ls -la .next/ || echo "No .next directory found"
43+
echo "� Looking for standalone directory:"
44+
ls -la .next/standalone/ || echo "No standalone directory found"
45+
echo "📁 Looking for any server files:"
46+
find .next -name "*.js" -path "*/server*" || echo "No server files found"
47+
shell: bash
48+
49+
- name: 🚀 Start Frontend App (Background)
50+
run: |
51+
cd apps/frontend
52+
echo "🚀 Starting frontend with next start..."
53+
pnpm start &
4554
echo "FRONTEND_PID=$!" >> $GITHUB_ENV
4655
shell: bash
4756

0 commit comments

Comments
 (0)