Skip to content

Commit 2a3accb

Browse files
authored
ci: stop testing against NodeJS v18 (#632)
* 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 fa038ea commit 2a3accb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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
@@ -69,6 +69,6 @@
6969
]
7070
},
7171
"engines": {
72-
"node": ">= 18"
72+
"node": ">= 20"
7373
}
7474
}

scripts/build.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ async function main() {
7373
sideEffects: false,
7474
},
7575
null,
76-
2
77-
)
76+
2,
77+
),
7878
);
7979
}
8080
main();

0 commit comments

Comments
 (0)