Skip to content

Commit 59285e4

Browse files
authored
ci: stop testing against NodeJS v18 (#340)
* 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 3c2e1bd commit 59285e4

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
@@ -13,9 +13,9 @@ jobs:
1313
strategy:
1414
matrix:
1515
node_version:
16-
- 18
1716
- 20
1817
- 22
18+
- 24
1919
steps:
2020
- uses: actions/checkout@v4
2121
- name: Use Node.js ${{ matrix.node_version }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,6 @@
7575
]
7676
},
7777
"engines": {
78-
"node": ">= 18"
78+
"node": ">= 20"
7979
}
8080
}

scripts/build.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ async function main() {
7575
sideEffects: false,
7676
},
7777
null,
78-
2
79-
)
78+
2,
79+
),
8080
);
8181
}
8282
main();

0 commit comments

Comments
 (0)