diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index df5ed8903..1175ef5fe 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,9 +18,9 @@ jobs: strategy: matrix: node_version: - - 18 - 20 - 22 + - 24 steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node_version }} diff --git a/package.json b/package.json index 3650adcf9..bf7ae6d24 100644 --- a/package.json +++ b/package.json @@ -78,6 +78,6 @@ ] }, "engines": { - "node": ">= 18" + "node": ">= 20" } } diff --git a/scripts/build.mjs b/scripts/build.mjs index 7d4203556..72f4f8c45 100644 --- a/scripts/build.mjs +++ b/scripts/build.mjs @@ -72,8 +72,8 @@ async function main() { sideEffects: false, }, null, - 2 - ) + 2, + ), ); } main();