mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 07:03:00 +08:00
update: update workflows
This commit is contained in:
parent
f97b25e626
commit
e5c16b3497
19
.github/workflows/push-build.yaml
vendored
19
.github/workflows/push-build.yaml
vendored
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user