From c496b32cb0e91bf15ad2da6d5585f5282fdcf675 Mon Sep 17 00:00:00 2001 From: woothu <32914662+woothu@users.noreply.github.com> Date: Thu, 30 Jan 2020 15:46:56 +0100 Subject: [PATCH] chore: e2e test CI: fix run command --- .github/workflows/nodejs.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 0013825d..97acaf67 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -43,7 +43,8 @@ jobs: with: node-version: 12 - name: e2e chrome test - run: npm i - run : npm run test:e2e + run: | + npm i + npm run test:e2e env: BROWSER: chrome \ No newline at end of file