From 343011f8a914187571ca549540ba1c5f07be8495 Mon Sep 17 00:00:00 2001 From: Basit Chonka Date: Tue, 4 Jun 2024 11:07:34 +0200 Subject: [PATCH] drop n14 from ci --- .github/workflows/nodejs.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 15b2356..29bed38 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -15,7 +15,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] - node-version: [14.x, 16.x, 18.x, 20.x] + node-version: [16.x, 18.x, 20.x] runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v2 @@ -23,8 +23,6 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - - name: Install npm@8 for Node.js 14 - run: node -e 'process.exitCode = +process.version.startsWith("v14")' || npm install -g npm@8 # the oidc-provider package we use doesn't list Node.js 20 as supported - name: Install Dependencies run: npm ci --ignore-engines