From e3a8bd973c2ab2fa22bda27694eda4d2b6759fc8 Mon Sep 17 00:00:00 2001 From: Dimitar Manov <99065541+dimitarmanov@users.noreply.github.com> Date: Tue, 10 Jun 2025 18:18:42 +0300 Subject: [PATCH] test hardhat --- .github/workflows/ci-build.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index 57cb0b8f2b..ef171bd58d 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -24,3 +24,13 @@ jobs: --health-interval=10s --health-timeout=5s --health-retries=10 + + steps: + - name: Wait for Geth devnet to be ready + run: | + for i in {1..20}; do + curl --silent http://localhost:8545 && break + echo "Waiting for geth..." + sleep 3 + done +