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 58ee86a commit 5e388cdCopy full SHA for 5e388cd
.github/workflows/test.yml
@@ -51,7 +51,13 @@ jobs:
51
run: bash ./setup_github.sh && docker compose up --build -d
52
53
- name: check dns is working
54
- run: netstat -tulpn # Use -tulpn to show TCP/UDP listeners
+ run: cat /etc/hosts; netstat -tulpn # Use -tulpn to show TCP/UDP listeners
55
+
56
+ - name: Check what services are on what port
57
+ run: docker ps --format "table {{.Names}}\t{{.Ports}}" && docker compose ps
58
59
+ - name: Wait for services to be healthy
60
+ run: sleep 2
61
62
- name: Run E2E tests
63
uses: cypress-io/github-action@v6
0 commit comments