We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dacd1cc commit 39fad70Copy full SHA for 39fad70
.github/workflows/deploy.yml
@@ -31,8 +31,6 @@ jobs:
31
sleep 10 # Wait for server to start
32
echo try to get /health
33
curl --retry 3 --retry-delay 5 --fail http://localhost:5000/api/health
34
- echo stopping
35
- docker stop backend-test
36
37
- name: Build and Test Frontend
38
working-directory: ./frontend
@@ -44,8 +42,10 @@ jobs:
44
42
sleep 5
45
43
echo trying to connect to frontend
46
curl --retry 3 --retry-delay 5 --fail http://localhost:80
47
+ echo stopping frontend
48
docker stop frontend-test
+ echo stopping backend
+ docker stop backend-test
49
50
- name: Push Docker Images
51
run: |
0 commit comments