Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,16 @@ jobs:
--env "GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS=trino-datasource" \
grafana/grafana:${{ matrix.grafana }}

echo "Waiting for Grafana to be ready..."
while true; do
if curl -s http://localhost:3000/api/health | grep -q "ok"; then
echo "Grafana is ready!"
break
fi
echo "Waiting for Grafana..."
sleep 5
done

- name: End to end test
run: |
npx tsc -p tsconfig.json --noEmit
Expand Down