From 7d1f6760750b0ee613efd803fe3e777c8cad2177 Mon Sep 17 00:00:00 2001 From: npty Date: Mon, 8 Jul 2024 19:49:44 +0700 Subject: [PATCH] chore: add check --- .github/workflows/test-core.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/test-core.yml b/.github/workflows/test-core.yml index 8f5a913c..ad614e58 100644 --- a/.github/workflows/test-core.yml +++ b/.github/workflows/test-core.yml @@ -38,6 +38,14 @@ jobs: - name: Build run: npm run build:core + - name: Check if evm-node-1 is running + run: | + curl -sSf http://localhost:8545 || { echo "evm-node-1 is not running"; exit 1; } + + - name: Check if evm-node-2 is running + run: | + curl -sSf http://localhost:8546 || { echo "evm-node-2 is not running"; exit 1; } + - name: Test timeout-minutes: 15 run: |