Skip to content

Commit

Permalink
Update e2e.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
felix-mu committed Apr 19, 2024
1 parent 3ca4f65 commit 4235d5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Run docker compose
run: docker compose up -d
- name: Check if Grafana is ready
run: status="0"; while [status -ne "200"]; do status=$(curl -o /dev/null -w "%{response_code}" localhost:3000/api/health); done
run: sh -c '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 4235d5c

Please sign in to comment.