feat(node): Add support for Node.js v24.0.1

Co-Authored-By: Kazuki Yamada <koukun0120@gmail.com>
This commit is contained in:
Devin AI
2025-05-10 14:33:48 +00:00
parent d2fd710b90
commit 0e58ad9e93
4 changed files with 5 additions and 5 deletions

View File

@@ -45,7 +45,7 @@ runs:
- name: Setup Node.js - name: Setup Node.js
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: "22" node-version: "24"
cache: "npm" cache: "npm"
- name: Install Repomix - name: Install Repomix
shell: bash shell: bash

View File

@@ -68,7 +68,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, windows-latest, macos-latest] os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [18.0.0, 18.x, 19.x, 20.x, 21.x, 22.x, 23.x] node-version: [18.0.0, 18.x, 19.x, 20.x, 21.x, 22.x, 23.x, 24.x]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -110,7 +110,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, windows-latest, macos-latest] os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [18.0.0, 18.x, 19.x, 20.x, 21.x, 22.x, 23.x] node-version: [18.0.0, 18.x, 19.x, 20.x, 21.x, 22.x, 23.x, 24.x]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

View File

@@ -1 +1 @@
nodejs 23.6.0 nodejs 24.0.1

View File

@@ -102,7 +102,7 @@
"vitest": "^3.1.1" "vitest": "^3.1.1"
}, },
"engines": { "engines": {
"node": ">=18.0.0", "node": ">=18.0.0 <=24.0.1",
"yarn": ">=1.22.22" "yarn": ">=1.22.22"
} }
} }