From 0423e6c3ff42a3782b6ff593548949e9a8cdefba Mon Sep 17 00:00:00 2001 From: Gleb Date: Thu, 5 Dec 2024 12:23:32 -0800 Subject: [PATCH] Fix typo --- .github/workflows/bindings-ts.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bindings-ts.yml b/.github/workflows/bindings-ts.yml index 885512edd..eea85a6ac 100644 --- a/.github/workflows/bindings-ts.yml +++ b/.github/workflows/bindings-ts.yml @@ -45,8 +45,8 @@ jobs: colima start - name: Run quickstart run: | - container=`docker run stellar/quickstart:testing \ - -d -p 8000:8000 -e ENABLE_LOGS=true -e NETWORK=local -e ENABLE_SOROBAN_RPC=true \ + container=`docker run -d stellar/quickstart:testing \ + -p 8000:8000 -e ENABLE_LOGS=true -e NETWORK=local -e ENABLE_SOROBAN_RPC=true \ --health-cmd "curl --no-progress-meter --fail-with-body -X POST \"http://localhost:8000/soroban/rpc\" -H 'Content-Type: application/json' -d '{\"jsonrpc\":\"2.0\",\"id\":8675309,\"method\":\"getNetwork\"}' && curl --no-progress-meter \"http://localhost:8000/friendbot\" | grep '\"invalid_field\": \"addr\"'" \ --health-interval 10s \ --health-timeout 5s \