From 449c33fd31d4752658e1897733158367a47cfec6 Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Tue, 26 Dec 2023 15:21:02 +0100 Subject: [PATCH] chore: update ci --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7cd2ec8..aabc741 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - node: [18, 20] + node: [16, 18, 20] fail-fast: false steps: @@ -55,10 +55,10 @@ jobs: - name: Install Webpack 4 run: pnpm i webpack@4 - if: ${{ matrix.node != 18 }} + if: ${{ matrix.node == 16 }} - name: Test with Webpack 4 run: pnpm run test - if: ${{ matrix.node != 18 }} + if: ${{ matrix.node == 16 }} env: SKIP_RSPACK: 'true'