From d0d93a542c38aba4ce281bf3e61304d2cc8efed0 Mon Sep 17 00:00:00 2001 From: Frazer Smith <43814140+Fdawgs@users.noreply.github.com> Date: Tue, 27 Apr 2021 10:14:42 +0100 Subject: [PATCH] ci: add nodejs v16 to test matrix (#157) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b2ead0a7..08d5475b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x, 14.x] + node-version: [10, 12, 14, 16] os: [ubuntu-latest, windows-latest, macOS-latest] steps: @@ -27,7 +27,7 @@ jobs: run: npm install --ignore-scripts - name: Run Tests run: | - npm run test + npm test automerge: needs: build