diff --git a/ci/node.js.yml b/ci/node.js.yml index d57a71f..fa64c95 100644 --- a/ci/node.js.yml +++ b/ci/node.js.yml @@ -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