From 134bfdfefd50cd5d5c8605624f305853564b55e2 Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Sat, 8 Mar 2025 16:39:46 +0000 Subject: [PATCH] ci(ci): drop node < 20 Signed-off-by: Frazer Smith --- .github/workflows/ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a160bc..4af73be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -84,7 +84,7 @@ jobs: contents: read strategy: matrix: - node-version: [6, 8, 10, 11, 12, 13, 14, 15, 16, 18, 20] + node-version: [20, 22] steps: - name: Check out repo uses: actions/checkout@v4 @@ -96,10 +96,6 @@ jobs: with: node-version: ${{ matrix.node-version }} - - name: Upgrade npm - if: ${{ success() && matrix.node-version == '6' }} - run: npm i npm@6.13.4 -g - - name: Install dependencies run: npm i --ignore-scripts