Skip to content

Commit

Permalink
Fixed: container ready action step command
Browse files Browse the repository at this point in the history
  • Loading branch information
GPortas committed Jun 28, 2023
1 parent c321cd6 commit b17421d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: ./run-env.sh 9588-datasets-api-extension

- name: Wait for containers to be ready
run: timeout 300s sh -c 'until docker logs dev_dataverse_bootstrap | grep 'your instance has been configured'; do echo "Waiting for Dataverse to be bootstrapped..."; sleep 2; done'
run: timeout 300s sh -c 'while ! docker logs dev_dataverse_bootstrap 2>&1 | grep -q "your instance has been configured"; do sleep 2; done'

- name: Run e2e tests
run: npm run test:e2e
Expand Down

0 comments on commit b17421d

Please sign in to comment.