From 68a4a4dba75f2adc1b58c5c3c87becee5c8b2784 Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Sun, 30 Jun 2024 10:31:56 +0200 Subject: [PATCH] ci: remove older Node.js 12 and 14 from CI runs --- .github/workflows/audit.yml | 2 +- .github/workflows/node.js.yml | 2 +- .gitlab-ci.yml | 20 -------------------- 3 files changed, 2 insertions(+), 22 deletions(-) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index b192428..a12b21b 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: node-version: - - 14 + - 16 runs-on: ubuntu-22.04 name: Node.js package audit steps: diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 1483e56..9f7daac 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [12, 14, 16, 18, 20, 22] + node-version: [16, 18, 20, 22] steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 674edb0..d6e8be7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,23 +1,3 @@ -node_12: - image: node:12-slim - stage: build - before_script: - - node --version - - npm --version - script: - - cd ./export-server - - npm install - -node_14: - image: node:14-slim - stage: build - before_script: - - node --version - - npm --version - script: - - cd ./export-server - - npm install - node_16: image: node:16-slim stage: build