File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments