From 3f0365f1da15e7e0d0c087c3efaaae839cd562dd Mon Sep 17 00:00:00 2001 From: Raz Luvaton <16746759+rluvaton@users.noreply.github.com> Date: Fri, 22 Sep 2023 13:41:40 +0300 Subject: [PATCH] chore: remove EoL Node.js 16 from test matrix --- .github/workflows/nodejs.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index c74d6c13..56f128df 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -26,7 +26,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [16.x, 18.x, 20.x] + node-version: [18.x, 20.x] os: [ubuntu-latest, macOS-latest, windows-latest] runs-on: ${{ matrix.os }} steps: @@ -39,10 +39,6 @@ jobs: - name: Install dependencies run: npm install - name: Run tests - if: matrix.node-version == '16.x' - run: npm run test-unit - - name: Run tests - if: matrix.node-version != '16.x' run: npm run coverage:ci - name: Upload coverage report to Codecov uses: codecov/codecov-action@v3