From c0673898a8166dee08107ecc0d50c868fa1c6445 Mon Sep 17 00:00:00 2001 From: bwallacee Date: Mon, 13 Nov 2023 09:14:47 +0000 Subject: [PATCH] chore(trading): add working directory to workflow --- .github/workflows/console-test-run.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/console-test-run.yml b/.github/workflows/console-test-run.yml index 496813456..4f30e59f3 100644 --- a/.github/workflows/console-test-run.yml +++ b/.github/workflows/console-test-run.yml @@ -182,16 +182,19 @@ jobs: #---------------------------------------------- - name: Install dependencies run: poetry install --no-interaction --no-root + working-directory: apps/trading/e2e #---------------------------------------------- # install vega binaries #---------------------------------------------- - name: Install vega binaries run: poetry run python -m vega_sim.tools.load_binaries --force --version ${{ env.VEGA_VERSION }} + working-directory: apps/trading/e2e #---------------------------------------------- - # install playwright + # install playwrightworking-directory: apps/trading/e2e #---------------------------------------------- - name: install playwright run: poetry run playwright install --with-deps chromium + working-directory: apps/trading/e2e #---------------------------------------------- # run tests #----------------------------------------------