Skip to content

Commit 15f6606

Browse files
committed
.github: e2e: Use proper YAML syntax for up check
1 parent f58f04b commit 15f6606

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/e2e-tests.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ jobs:
4747
run: make docker-js-unit
4848

4949
- name: Check if containers are up, sleep if not
50-
run: [ "$(docker inspect --format='{{.State.Health.Status}}' isso-server)" = 'healthy' ] || sleep 5
50+
shell: bash
51+
run: '[ "$(docker inspect --format={{.State.Health.Status}} isso-server)" = "healthy" ] || sleep 5'
5152

5253
- name: Client integration tests
5354
run: make docker-js-integration

0 commit comments

Comments
 (0)