Skip to content

Commit

Permalink
.github: e2e: Use proper YAML syntax for up check
Browse files Browse the repository at this point in the history
  • Loading branch information
ix5 committed Jun 12, 2022
1 parent f58f04b commit 15f6606
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/e2e-tests.yml
Expand Up @@ -47,7 +47,8 @@ jobs:
run: make docker-js-unit

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

- name: Client integration tests
run: make docker-js-integration
Expand Down

0 comments on commit 15f6606

Please sign in to comment.