diff --git a/ci/node.js.yml b/ci/node.js.yml index 94face1..a2aece3 100644 --- a/ci/node.js.yml +++ b/ci/node.js.yml @@ -17,10 +17,8 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - - name: npm install, build, and test - run: | - npm ci - npm run build --if-present - npm test + - run: npm install + - run: npm run build --if-present + - run: npm test env: CI: true