From a1349eab8455d6f94d195251d8eeade717557e77 Mon Sep 17 00:00:00 2001 From: hh Date: Thu, 24 Apr 2025 10:20:13 +0800 Subject: [PATCH 1/3] update node version --- .github/workflows/main_ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main_ci.yml b/.github/workflows/main_ci.yml index 6489e516b..bccac011b 100644 --- a/.github/workflows/main_ci.yml +++ b/.github/workflows/main_ci.yml @@ -28,7 +28,7 @@ jobs: - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # v3 with: - node-version: ${{ matrix.node-version }} + node-version: "20.x" registry-url: https://registry.npmjs.org/ cache: 'npm' - run: npm ci From 8e950a1a4ec7f55af5fd13dacb18e514f9eea348 Mon Sep 17 00:00:00 2001 From: hh Date: Thu, 24 Apr 2025 10:23:55 +0800 Subject: [PATCH 2/3] update ci --- .github/workflows/main_ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main_ci.yml b/.github/workflows/main_ci.yml index bccac011b..d97a71dcc 100644 --- a/.github/workflows/main_ci.yml +++ b/.github/workflows/main_ci.yml @@ -21,14 +21,14 @@ jobs: strategy: fail-fast: false matrix: - node-version: [18, 'lts/*'] + node-version: [20] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # v3 with: - node-version: "20.x" + node-version: ${{ matrix.node-version }} registry-url: https://registry.npmjs.org/ cache: 'npm' - run: npm ci From 81bdfd50fd5de8fa6288cdd823565ebef973ca0a Mon Sep 17 00:00:00 2001 From: hh Date: Thu, 24 Apr 2025 10:26:30 +0800 Subject: [PATCH 3/3] Fix ci --- .github/workflows/main_ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main_ci.yml b/.github/workflows/main_ci.yml index d97a71dcc..6489e516b 100644 --- a/.github/workflows/main_ci.yml +++ b/.github/workflows/main_ci.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [20] + node-version: [18, 'lts/*'] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2