File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5959 --env-file .devcontainer/.env \
6060 up -d sentry-test-services
6161
62- - name : Wait for services to be fully ready
63- run : |
64- cd .devcontainer
65- source .env
66- echo "⏳ Waiting for services to be fully ready..."
67-
68- # Wait for Rails app to respond with 200
69- timeout 90 bash -c 'until docker compose --profile e2e run --rm sentry-test curl -s -o /dev/null -w "%{http_code}" http://sentry-test-services:4000/health | grep -q "200"; do echo "Waiting for Rails app..."; sleep 2; done' || (echo "❌ Rails app failed to become ready" && exit 1)
70- echo "✅ Rails app is ready"
71-
72- # Wait for Svelte app to respond with 200
73- timeout 90 bash -c 'until docker compose --profile e2e run --rm sentry-test curl -s -o /dev/null -w "%{http_code}" http://sentry-test-services:4001/health | grep -q "200"; do echo "Waiting for Svelte app..."; sleep 2; done' || (echo "❌ Svelte app failed to become ready" && exit 1)
74- echo "✅ Svelte app is ready"
75-
7662 - name : Build sentry-test
7763 run : |
7864 docker compose \
You can’t perform that action at this time.
0 commit comments