diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index ed1ed96..5ea7a21 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x, 13.x, 14.x] + node-version: [14.x, 15.x, 16.x] steps: - uses: actions/checkout@v1 @@ -17,10 +17,9 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - - name: npm install, build, and test + - name: npm install and build run: | npm ci npm run build --if-present - npm test env: CI: true