Skip to content

Commit 0347315

Browse files
committed
github/lint-test-build/docker: probe built image
1 parent ce82d37 commit 0347315

File tree

2 files changed

+10
-33
lines changed

2 files changed

+10
-33
lines changed

.github/workflows/lint-test-build.yml

+10
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,16 @@ jobs:
170170
with:
171171
install: true
172172
- run: docker build .
173+
- run: |
174+
docker build --quiet --load . | \
175+
xargs docker run --detach --publish 8080:8080
176+
timeout=120
177+
while ! curl http://localhost:8080
178+
do
179+
[ $timeout -eq 0 ] && exit 1
180+
sleep 1
181+
timeout=$((timeout - 1))
182+
done
173183
174184
build-cli:
175185
needs: [build-lib, build-lib-node, build-server]

with_server

-33
This file was deleted.

0 commit comments

Comments
 (0)