ci(workflow): 移除 Windows 构建流程中的 Node.js 相关步骤
Some checks failed
Build Android APK / 编译 libcore.aar (push) Failing after 9s
Build Android APK / 编译 Android APK (release) (push) Has been skipped
Build Windows / 编译 libcore (Windows) (push) Failing after 5s
Build Windows / build (push) Has been skipped
Build Multi-Platform / 编译 libcore (iOS/tvOS) (push) Failing after 7s
Build Multi-Platform / 编译 libcore (Android) (push) Has been cancelled
Build Android APK / 创建 GitHub Release (push) Has been cancelled
Build Multi-Platform / 编译 libcore (Windows) (push) Has been cancelled
Build Multi-Platform / 编译 libcore (macOS) (push) Has been cancelled
Build Multi-Platform / 编译 libcore (Linux) (push) Has been cancelled
Build Multi-Platform / 构建 Android APK (push) Has been cancelled
Build Multi-Platform / 构建 Windows (push) Has been cancelled
Build Multi-Platform / 构建 macOS (push) Has been cancelled
Build Multi-Platform / 创建 Release (push) Has been cancelled
Build Multi-Platform / 构建 iOS (push) Has been cancelled
Build Multi-Platform / 构建 Linux (push) Has been cancelled

This commit is contained in:
shanshanzhong 2025-11-05 18:29:45 -08:00
parent 90fd476c45
commit 7c9b23edbd

View File

@ -14,20 +14,6 @@ jobs:
runs-on: client-server
steps:
- name: 🔧 设置 Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x' # 使用 20.x 以确保最新稳定补丁
cache: 'npm' # 启用缓存以加速并减少下载问题
- name: 🔍 验证 Node.js 安装
run: |
echo "Node.js 版本: $(node --version)"
echo "npm 版本: $(npm --version)"
echo "PATH: $PATH"
which node || echo "❌ node 未在 PATH 中"
node --version || echo "❌ node 命令失败"
- name: 📥 Checkout 代码
uses: actions/checkout@v4
with: