Skip to content

Commit 053a2e8

Browse files
committed
fix(ci): remove Node 18.x from test matrix
Vitest 4.x requires Node.js 20+. Node 18.x fails with ERR_REQUIRE_ESM due to Vite 6's pure ESM modules. Node 18.x reaches EOL April 2025.
1 parent e647452 commit 053a2e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [18.x, 20.x, 22.x]
15+
node-version: [20.x, 22.x]
1616

1717
steps:
1818
- name: Checkout repository

0 commit comments

Comments
 (0)