diff --git a/.github/workflows/nodejs.yml b/.github/workflows/test.yml similarity index 88% rename from .github/workflows/nodejs.yml rename to .github/workflows/test.yml index 634ce0f..fb9d794 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/test.yml @@ -3,6 +3,7 @@ name: Test on: push: branches-ignore: master + pull_request: jobs: build: @@ -18,7 +19,7 @@ jobs: key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node-: - - name: npm it - run: npm it + - name: npm ci + run: npm ci - name: test run: npm test