fix: 修复workflow指定node版本错误语法

This commit is contained in:
XiaoDaiGua-Ray 2024-05-02 10:22:46 +08:00
parent 43df660ab6
commit 8097296f8f

View File

@ -8,7 +8,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
node-version: [20.x] node-version: [18.18.2, 20.12.0] # 修改这里以包含所需的 Node.js 版本
os: [ubuntu-latest, windows-latest, macos-latest] os: [ubuntu-latest, windows-latest, macos-latest]
experimental: [true] experimental: [true]
@ -16,10 +16,10 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Install Node.js ${{ matrix.node-version }} - name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: ['18.18.2', '20.12.0'] node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v2 - uses: pnpm/action-setup@v2
name: Install pnpm name: Install pnpm