Skip to content

Commit

Permalink
ci: deprecate nodejs 14.x
Browse files Browse the repository at this point in the history
  • Loading branch information
zeim839 authored Feb 9, 2024
1 parent 83ae0d0 commit 2eb1100
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ on:
branches: [ "main" ]

jobs:
build-14:
build-16:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -25,12 +25,12 @@ jobs:
- run: npm ci
- run: npm run lint
- run: npm run test
build-16:
needs: build-14
build-18:
needs: [build-16]
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -41,12 +41,12 @@ jobs:
- run: npm ci
- run: npm run lint
- run: npm run test
build-18:
needs: [build-14, build-16]
build-20:
needs: [build-16, build-18]
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
node-versions: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -57,3 +57,4 @@ jobs:
- run: npm ci
- run: npm run lint
- run: npm run test

0 comments on commit 2eb1100

Please sign in to comment.