Skip to content

Commit 3cbd7d7

Browse files
committed
ci more debug output
1 parent bb40048 commit 3cbd7d7

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,17 @@ jobs:
142142
curl -ksf https://127.0.0.1:5001/api/v1/auth/verify-token || echo "WARNING: Auth endpoint returned error (expected without cookies)"
143143
echo "Services ready!"
144144
145+
- name: Debug frontend state
146+
run: |
147+
echo "=== Check JS bundle for baseUrl ==="
148+
curl -ks https://127.0.0.1:5001/build/main.js | grep -o "baseUrl[^,]*" | head -3 || echo "not found"
149+
echo ""
150+
echo "=== Test auth API directly ==="
151+
curl -ksv https://127.0.0.1:5001/api/v1/auth/verify-token 2>&1 | head -30
152+
echo ""
153+
echo "=== Frontend container logs ==="
154+
docker logs frontend 2>&1 | tail -50
155+
145156
- name: Run E2E tests
146157
working-directory: frontend
147158
env:

0 commit comments

Comments
 (0)