change github workflow node version

This commit is contained in:
HF 2022-01-04 22:36:27 +01:00
parent 1c59287af0
commit 847c271d41

View File

@ -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