diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c94a7ee6..67db110a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,9 +13,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 159ef9b1..ef2ace15 100644 --- a/package.json +++ b/package.json @@ -75,6 +75,6 @@ ] }, "engines": { - "node": ">= 18" + "node": ">= 20" } } diff --git a/scripts/build.mjs b/scripts/build.mjs index a0168e97..7fb7a01f 100644 --- a/scripts/build.mjs +++ b/scripts/build.mjs @@ -75,8 +75,8 @@ async function main() { sideEffects: false, }, null, - 2 - ) + 2, + ), ); } main();