From 73c3e4c1846e0548ca720138930b5af54046da4e Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Mon, 26 Apr 2021 19:37:58 +0100 Subject: [PATCH] ci: add nodejs v16 to test matrix --- .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 f5e7ac5..f6a3e95 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x, 14.x] + node-version: [10, 12, 14, 16] db: ["mysql:8.0"] name: Node.js ${{ matrix.node }} - ${{ matrix.db }} @@ -45,7 +45,7 @@ jobs: - name: Run Tests run: | - npm run test + npm test automerge: needs: test