update: update workflows

This commit is contained in:
XiaoDaiGua-Ray 2024-05-02 10:29:33 +08:00
parent f97b25e626
commit e5c16b3497

View File

@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [18.18.2, 20.12.0] # 修改这里以包含所需的 Node.js 版本
node-version: [18.18.2, 20.12.0] # 指定 Node.js 版本
os: [ubuntu-latest, windows-latest, macos-latest]
experimental: [true]
@ -21,6 +21,23 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install system dependencies for canvas (macOS only)
if: runner.os == 'macOS'
run: |
brew update
brew install pkg-config cairo pango libpng jpeg giflib
- name: Install node-pre-gyp and node-gyp
run: |
npm install -g node-pre-gyp
npm install -g node-gyp
- name: Install Python and distutils (macOS only)
if: runner.os == 'macOS'
run: |
python3 -m ensurepip
python3 -m pip install -U distutils
- uses: pnpm/action-setup@v2
name: Install pnpm
with: