From b0a9e1272291ef739c8f1e1c713ee793e24fa2d2 Mon Sep 17 00:00:00 2001 From: Grzegorz Godlewski Date: Tue, 16 Jul 2024 14:28:27 +0200 Subject: [PATCH] build: do not show progress during SDK build for tests --- .github/actions/prepare-tests/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/prepare-tests/action.yml b/.github/actions/prepare-tests/action.yml index d393f99f9..95e23fa3b 100644 --- a/.github/actions/prepare-tests/action.yml +++ b/.github/actions/prepare-tests/action.yml @@ -51,7 +51,7 @@ runs: shell: bash run: | echo "Going to build the SDK on the requestor" - docker exec -t docker-requestor-1 /bin/sh -c "cd /golem-js && npm i && npm run build" + docker exec -t docker-requestor-1 /bin/sh -c "cd /golem-js && npm i --no-progress && npm run build" echo "Successfully built the SDK on the requestor" - name: Install Cypress