test node in all current versions (#19)

This commit is contained in:
Wes Todd
2019-08-12 05:50:58 -07:00
committed by Danny McCormick
parent a6908c2c05
commit c8c75ef38f
+6 -2
View File
@@ -7,12 +7,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
steps:
- uses: actions/checkout@master
- name: Use Node.js 10.x
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
version: 10.x
version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install