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 e37648f commit 0e70087Copy full SHA for 0e70087
1 file changed
.github/workflows/test.yml
@@ -69,15 +69,11 @@ jobs:
69
- name: Build backend image
70
run: docker build -f apps/backend/Dockerfile -t bolter-backend:test .
71
72
- - name: Verify frontend image runs
+ - name: Verify images created
73
run: |
74
- docker run -d --name frontend-test -p 3000:80 bolter-frontend:test
75
- for i in 1 2 3 4 5; do
76
- curl -sf http://localhost:3000/ > /dev/null && break
77
- sleep 2
78
- done
79
- curl -sf http://localhost:3000/ > /dev/null
80
- docker stop frontend-test
+ docker image inspect bolter-frontend:test > /dev/null
+ docker image inspect bolter-backend:test > /dev/null
+ echo "Both images built successfully"
81
82
test-frontend-coverage:
83
name: Frontend Coverage
0 commit comments