From 8f658006d4fe0249ae24db6500438866bfa4f9b2 Mon Sep 17 00:00:00 2001 From: Andrey Sitnik Date: Fri, 31 Dec 2021 02:22:29 +1000 Subject: [PATCH] Add Node.js 17 to CI --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8084cef..1591945 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v2 with: - node-version: 16 + node-version: 17 - name: Install dependencies uses: bahmutov/npm-install@v1 - name: Run tests @@ -24,6 +24,7 @@ jobs: strategy: matrix: node-version: + - 16 - 14 - 12 name: Node.js ${{ matrix.node-version }} Quick