From d38805659f6053e202197b8b48434a80646bd9a6 Mon Sep 17 00:00:00 2001 From: pscott Date: Fri, 18 Jun 2021 12:55:22 +0200 Subject: [PATCH] Remove env var; hardcode commands to e2e tests --- .github/workflows/e2e-tests.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 63c1342..a19b336 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -28,12 +28,8 @@ jobs: run: | npm install -g yarn - name: Build/Install build js deps - env: - BOLOS_SDK: "NONE" run: | - make install_tests + cd tests && yarn install - name: Run zemu tests - env: - BOLOS_SDK: "NONE" run: | - make run_tests \ No newline at end of file + cd tests && yarn test \ No newline at end of file