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 19110a6 commit 28f93e1Copy full SHA for 28f93e1
.github/workflows/cd.yml
@@ -60,11 +60,13 @@ jobs:
60
- name: Start docker-compose
61
run: |
62
docker-compose -f docker-compose.yml up -d --build
63
+
64
+ - name: Smoke test API
65
+ run: |
66
+ sleep 15
67
+ curl -sf http://localhost:3001 || exit 1
68
- - smoke-test:
- image: curlimages/curl
- depends_on:
- - webapp
- - api
69
+ - name: Smoke test Webapp
70
- sh -c "sleep 5 && curl -sf http://localhost:3001 || exit 1"
71
72
+ curl -sf http://localhost:3000 || exit 1
0 commit comments