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 }}