From aa3dab93db17c38c4efef31b65e68260ef62b971 Mon Sep 17 00:00:00 2001 From: Conduitry Date: Thu, 24 Oct 2019 13:55:53 -0400 Subject: [PATCH] fix running tests on github actions --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2e035c86b2..2488902b24 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,8 @@ jobs: - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - - run: 'npm i && npm test' + - run: npm install + - run: npm test env: CI: true Lint: