ci: 将bun修改为yarn
Some checks failed
ci / build (push) Failing after 4s

This commit is contained in:
Wzp-2008 2025-01-12 23:47:14 +08:00
parent c34bafcca1
commit 8882c5ca6e

View File

@ -9,12 +9,14 @@ jobs:
uses: actions/checkout@v4
- name: 设置node镜像
run: npm config set registry https://registry.npmmirror.com
- name: 设置bun环境
run: npm install -g bun
- name: 设置yarn环境
run: npm install -g yarn
- name: 设置yarn镜像
run : yarn config set registry https://registry.npmmirror.com
- name: 获取依赖
run: bun install
run: yarn
- name: 编译
run: bun run build-only
run: yarn build-only
- name: 上传编译后产物
uses: actions/upload-artifact@v3
with: