Skip to content

Commit 5e388cd

Browse files
committed
output the docker bound ports
1 parent 58ee86a commit 5e388cd

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,13 @@ jobs:
5151
run: bash ./setup_github.sh && docker compose up --build -d
5252

5353
- name: check dns is working
54-
run: netstat -tulpn # Use -tulpn to show TCP/UDP listeners
54+
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
5561

5662
- name: Run E2E tests
5763
uses: cypress-io/github-action@v6

0 commit comments

Comments
 (0)