Skip to content

Commit

Permalink
chore: disable Node.js 16 CI builds/tests (#1076)
Browse files Browse the repository at this point in the history
Co-authored-by: Cristiano Aguzzi <[email protected]>
Co-authored-by: Jan Romann <[email protected]>
  • Loading branch information
3 people authored Sep 12, 2023
1 parent e491764 commit e4c17c5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci-full.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x]

steps:
- name: Checkout
Expand Down Expand Up @@ -38,10 +38,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v1
with:
node-version: 16
node-version: 18

- name: Install
run: npm ci
Expand All @@ -54,10 +54,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install node v16
- name: install node v18
uses: actions/setup-node@v1
with:
node-version: 16
node-version: 18
- name: verify packages version consistency accross sub-modules
run: npm run check:versions

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x]

steps:
- name: Checkout
Expand Down Expand Up @@ -38,10 +38,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v1
with:
node-version: 16
node-version: 18

- name: Install
run: npm ci
Expand All @@ -54,10 +54,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install node v16
- name: install node v18
uses: actions/setup-node@v1
with:
node-version: 16
node-version: 18
- name: verify packages version consistency accross sub-modules
run: npm run check:versions

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ cs.addCodec(new MyCodec("application/myType"));

### To use with Node.js

> **Warning**: We no longer actively support Node.js version 14 and lower.
> **Warning**: We no longer actively support Node.js version 16 and lower.
- [Node.js](https://nodejs.org/) version 14+
- [npm](https://www.npmjs.com/) version 7+
- [Node.js](https://nodejs.org/) version 18+
- [npm](https://www.npmjs.com/) version 9+

#### Linux

Expand Down

0 comments on commit e4c17c5

Please sign in to comment.