Skip to content

Commit 10bee94

Browse files
authored
Add support for Node 22 (#749)
1 parent d428b67 commit 10bee94

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

.changeset/chilly-camels-obey.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'pleasantest': major
3+
---
4+
5+
Drop support for node 16

.changeset/stale-bananas-yell.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'pleasantest': minor
3+
---
4+
5+
Add support for node 22

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
node-version: [16.x, 18.x, 20.x]
18+
node-version: [18.x, 20.x, 22.x]
1919
steps:
2020
- uses: actions/checkout@v3
2121
- name: Use Node.js ${{ matrix.node-version }}
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
strategy:
3636
matrix:
37-
node-version: [16.x]
37+
node-version: [18.x]
3838
steps:
3939
- uses: actions/checkout@v3
4040
- name: Use Node.js ${{ matrix.node-version }}
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-latest
5050
strategy:
5151
matrix:
52-
node-version: [16.x]
52+
node-version: [18.x]
5353
steps:
5454
- uses: actions/checkout@v3
5555
- name: Use Node.js ${{ matrix.node-version }}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pleasantest",
33
"version": "4.0.0",
44
"engines": {
5-
"node": "16 || 18 || 20"
5+
"node": "18 || 20 || 22"
66
},
77
"files": [
88
"dist"

0 commit comments

Comments
 (0)