Skip to content

Commit 1eefea8

Browse files
authored
ci: stop testing against NodeJS v18 (#756)
* 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 b73d921 commit 1eefea8

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
@@ -18,9 +18,9 @@ jobs:
1818
strategy:
1919
matrix:
2020
node_version:
21-
- 18
2221
- 20
2322
- 22
23+
- 24
2424
steps:
2525
- uses: actions/checkout@v4
2626
- name: Use Node.js ${{ matrix.node_version }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@
7878
]
7979
},
8080
"engines": {
81-
"node": ">= 18"
81+
"node": ">= 20"
8282
}
8383
}

scripts/build.mjs

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

0 commit comments

Comments
 (0)