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 4235d5c commit 71e43a7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ jobs:
- name: Run docker compose
run: docker compose up -d
- name: Check if Grafana is ready
run: sh -c 'status="0"; while [status -ne "200"]; do status=$(curl -o /dev/null -w "%{response_code}" localhost:3000/api/health); done'
run: |
status="0"
while [status -ne "200"]
do
status=$(curl -o /dev/null -w "%{response_code}" localhost:3000/api/health)
done
- name: Run e2e tests with cypress
run: npm run e2e

0 comments on commit 71e43a7

Please sign in to comment.