From 4268eebe9506a3cc2fabbc4888f0c1cc1f24820f Mon Sep 17 00:00:00 2001 From: Michael FIG Date: Tue, 23 Nov 2021 00:01:48 -0600 Subject: [PATCH] ci(integration): reduce amount of test output to optimise --- .github/workflows/integration.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 5ee4cec4cfcf..5ebeff1ac3bf 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -55,4 +55,7 @@ jobs: - name: run agoric-cli integration-test working-directory: ./packages/agoric-cli - run: PATH="$PATH:$HOME/bin" AGORIC_INIT_OPTIONS='["--dapp-branch=${{steps.get-branch.outputs.result}}"]' yarn integration-test + # The "cut" here is to avoid hitting pessimal Actions output processing. + run: PATH="$PATH:$HOME/bin" yarn integration-test | cut -b 1-2048 + env: + AGORIC_INIT_OPTIONS: '["--dapp-branch=${{steps.get-branch.outputs.result}}"]'