We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e2c74a commit 769c0c9Copy full SHA for 769c0c9
1 file changed
.github/workflows/test.yml
@@ -51,8 +51,11 @@ jobs:
51
run: rm -rf build dist
52
- name: Load env vars from env.test to GitHub Actions workflow
53
run: dotenv -f env.test list >> "$GITHUB_ENV"
54
- - name: Start services with Docker Compose
55
- run: docker compose -f docker-compose.test.yml up -d
+ - name: Start services with Docker Compose (wait for health)
+ run: docker compose -f docker-compose.test.yml up -d --wait --wait-timeout 180
56
+ - name: Show compose status
57
+ if: always()
58
+ run: docker compose -f docker-compose.test.yml ps -a
59
# Enable tmate debugging of manually-triggered workflows if the input option was provided
60
- name: Setup tmate session
61
uses: mxschmitt/action-tmate@v3
0 commit comments