From a88f7634855b205f719591f3ab24145f090e118f Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Sat, 5 Feb 2022 23:39:48 -0700 Subject: [PATCH] chore: tweak build matrix --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0a08983..ec7666a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v2 with: - node-version: "14" + node-version: "16" - name: Install dependencies run: npm install - name: Run Eslint @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - nodeversion: ["12", "14", "16"] + nodeversion: ["12", "14", "16", "17"] steps: - name: Checkout Repository uses: actions/checkout@v2