Skip to content

Commit

Permalink
⚙️ config(ci): Fix check for running container in image build test job.
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Apr 14, 2024
1 parent 95d1461 commit 5aecfb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci:build:image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
- name: Wait for server container to be running
run: |
timeout 60 bash -c \
'until docker inspect --format "{{json .State }}" server | jq ".Status == \"running\"" ; do sleep 1; done'
'until docker inspect --format "{{json .State }}" server | jq -e ".Status == \"running\"" ; do sleep 1; done'
- name: Wait for server container 3000 port to be available
run: |
Expand Down

0 comments on commit 5aecfb7

Please sign in to comment.