Skip to content

Commit f48d430

Browse files
committed
Add Docker diagnostics to GitHub Actions
Verify Docker is running before tests since Arcium MPC nodes require Docker. This will help diagnose the localnet timeout issue.
1 parent 5e91d1a commit f48d430

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,13 @@ jobs:
6767
mkdir -p ~/.config/solana
6868
solana-keygen new --no-bip39-passphrase --silent --outfile ~/.config/solana/id.json
6969
70+
# Verify Docker is running and can pull images
71+
# Arcium requires Docker to run MPC nodes during tests
72+
- name: Verify Docker
73+
run: |
74+
docker info
75+
docker ps
76+
7077
- run: npm i
7178

7279
- run: npm test

0 commit comments

Comments
 (0)