From 8097296f8f7503acb092d93be19d5382225f5aa5 Mon Sep 17 00:00:00 2001 From: XiaoDaiGua-Ray <443547225@qq.com> Date: Thu, 2 May 2024 10:22:46 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8Dworkflow=E6=8C=87?= =?UTF-8?q?=E5=AE=9Anode=E7=89=88=E6=9C=AC=E9=94=99=E8=AF=AF=E8=AF=AD?= =?UTF-8?q?=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/push-build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push-build.yaml b/.github/workflows/push-build.yaml index a6a1285a..280c9791 100644 --- a/.github/workflows/push-build.yaml +++ b/.github/workflows/push-build.yaml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [20.x] + node-version: [18.18.2, 20.12.0] # 修改这里以包含所需的 Node.js 版本 os: [ubuntu-latest, windows-latest, macos-latest] experimental: [true] @@ -16,10 +16,10 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Install Node.js ${{ matrix.node-version }} + - name: Set up Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: - node-version: ['18.18.2', '20.12.0'] + node-version: ${{ matrix.node-version }} - uses: pnpm/action-setup@v2 name: Install pnpm