From 098ddfa98a37e2c29fa26685d9a89a2e34c49a33 Mon Sep 17 00:00:00 2001 From: Amitosh Swain Mahapatra Date: Thu, 22 Sep 2022 17:42:47 +0530 Subject: [PATCH] Remove NodeJS 17 from CI --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 319584e..afc6a86 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - node-version: [14.x, 16.x, 17.x, 18.x] + node-version: [14.x, 16.x, 18.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - node-version: [14, 16, 17, 18] + node-version: [14, 16, 18] container: image: node:${{ matrix.node-version }}-alpine steps: