Skip to content

Commit

Permalink
Update e2e.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
felix-mu authored Apr 19, 2024
1 parent 71e43a7 commit b14d034
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@ jobs:
run: docker compose up -d
- name: Check if Grafana is ready
run: |
status="0"
while [status -ne "200"]
while [$(curl -o /dev/null -w "%{response_code}" localhost:3000/api/health) -ne "200"]
do
status=$(curl -o /dev/null -w "%{response_code}" localhost:3000/api/health)
sleep 1
done
- name: Run e2e tests with cypress
run: npm run e2e
Expand Down

0 comments on commit b14d034

Please sign in to comment.