Skip to content

Commit 6422505

Browse files
authored
fix!: drop Node 18 support (#118)
1 parent fc1820a commit 6422505

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest, macos-latest, windows-latest]
12-
node-version: [18.x, 20.x]
12+
node-version: [20.x, 22.x]
1313

1414
runs-on: ${{matrix.os}}
1515
steps:

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest, macos-latest, windows-latest]
17-
node-version: [18.x, 20.x]
17+
node-version: [20.x, 22.x]
1818

1919
runs-on: ${{matrix.os}}
2020
steps:

.github/workflows/release-commits.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v2
1313

14-
- name: Use Node.js 20.x
14+
- name: Use Node.js 22.x
1515
uses: actions/setup-node@v1
1616
with:
17-
node-version: 20.x
17+
node-version: 22.x
1818

1919
- uses: pnpm/action-setup@v2
2020

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"dist"
3333
],
3434
"engines": {
35-
"node": "^18.0.0 || >=20.0.0"
35+
"node": "^20.0.0 || >=22.0.0"
3636
},
3737
"scripts": {
3838
"test": "vitest",

0 commit comments

Comments
 (0)