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