Skip to content

Commit

Permalink
chore: add check
Browse files Browse the repository at this point in the history
  • Loading branch information
npty committed Jul 8, 2024
1 parent 342209c commit 7d1f676
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 7d1f676

Please sign in to comment.