From 49e4bfe6cdfe51247739fcf638c8d8cf2fef9313 Mon Sep 17 00:00:00 2001 From: Abe Tomoaki Date: Wed, 1 Jul 2026 21:57:43 +0900 Subject: [PATCH] ci: update node-version --- .github/workflows/workflow.yml | 38 +++++++++++++++++----------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index ffed5b7..705233b 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -9,17 +9,17 @@ jobs: strategy: fail-fast: false matrix: - node-version: [20.x, 22.x] + node-version: [22.x, 24.x] steps: - - uses: actions/checkout@v6 - - uses: actions/setup-node@v6 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - - run: node -v - - run: npm -v - - run: npm ci - - run: npm test + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 + with: + node-version: ${{ matrix.node-version }} + cache: 'npm' + - run: node -v + - run: npm -v + - run: npm ci + - run: npm test mac-and-windows-test: name: Test on node latest and ${{ matrix.os }} @@ -29,12 +29,12 @@ jobs: matrix: os: [windows-latest, macos-latest] steps: - - uses: actions/checkout@v6 - - uses: actions/setup-node@v6 - with: - node-version: 22.x - cache: 'npm' - - run: node -v - - run: npm -v - - run: npm ci - - run: npm test + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 + with: + node-version: 24.x + cache: 'npm' + - run: node -v + - run: npm -v + - run: npm ci + - run: npm test