Skip to content

Commit

Permalink
ci: remove older Node.js 12 and 14 from CI runs
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Jun 30, 2024
1 parent 4b561bb commit 68a4a4d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
node-version:
- 14
- 16
runs-on: ubuntu-22.04
name: Node.js package audit
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
20 changes: 0 additions & 20 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 68a4a4d

Please sign in to comment.