From c8c75ef38fce6a302f9d33941f03f4fe8d755c00 Mon Sep 17 00:00:00 2001 From: Wes Todd Date: Mon, 12 Aug 2019 05:50:58 -0700 Subject: [PATCH] test node in all current versions (#19) --- ci/node.js.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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