Skip to content

Commit c016ce3

Browse files
authored
ci: stop testing against NodeJS v18 (#801)
* build(package): set minimal node version in engines field to v20 BREAKING CHANGE: Drop support for NodeJS v18 * build: set minimal node version in build script to v20 * ci: stop testing against NodeJS v18
1 parent b406083 commit c016ce3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
strategy:
1515
matrix:
1616
node_version:
17-
- 18
1817
- 20
1918
- 22
19+
- 24
2020
steps:
2121
- uses: actions/checkout@v4
2222
- name: Use Node.js ${{ matrix.node_version }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,6 @@
8585
"provenance": true
8686
},
8787
"engines": {
88-
"node": ">= 18"
88+
"node": ">= 20"
8989
}
9090
}

0 commit comments

Comments
 (0)