From 2a2408d786651b6d858fcf6875194d4f3f111fe3 Mon Sep 17 00:00:00 2001 From: sapphi-red <49056869+sapphi-red@users.noreply.github.com> Date: Wed, 18 Oct 2023 17:25:25 +0900 Subject: [PATCH] ci: remove node 21 and change node version on windows --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70971280be81da..45cf1fd8173224 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,13 +39,13 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node_version: [18, 20, 21] + node_version: [18, 20] include: # Active LTS + other OS - os: macos-latest node_version: 20 - os: windows-latest - node_version: 20 + node_version: 20.3.1 # https://github.com/nodejs/node/issues/48673 fail-fast: false name: "Build&Test: node-${{ matrix.node_version }}, ${{ matrix.os }}"