From 7036cdb0c478e42a50d01081ff6596cd5c7f7cdc Mon Sep 17 00:00:00 2001 From: Nicola Soranzo Date: Tue, 10 Oct 2023 11:43:56 +0100 Subject: [PATCH] Expand ``run:`` values to multiple lines --- .github/workflows/toolshed.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/toolshed.yaml b/.github/workflows/toolshed.yaml index b5cc2e4283f2..8fcb83a98f50 100644 --- a/.github/workflows/toolshed.yaml +++ b/.github/workflows/toolshed.yaml @@ -58,13 +58,19 @@ jobs: run: ./scripts/common_startup.sh --skip-client-build working-directory: 'galaxy root' - name: Build Frontend - run: '. .venv/bin/activate && cd lib/tool_shed/webapp/frontend && yarn && make client' + run: | + . .venv/bin/activate + cd lib/tool_shed/webapp/frontend + yarn + make client working-directory: 'galaxy root' - name: Install playwright - run: '. .venv/bin/activate && playwright install' + run: | + . .venv/bin/activate + playwright install working-directory: 'galaxy root' - name: Run tests - run: './run_tests.sh -toolshed' + run: ./run_tests.sh -toolshed env: TOOL_SHED_TEST_INSTALL_CLIENT: ${{ matrix.test-install-client }} TOOL_SHED_API_VERSION: ${{ matrix.shed-api }}