diff --git a/.workflow/pipeline-20251103.yml b/.workflow/pipeline-20251103.yml index e721cfcce..f527e76e6 100644 --- a/.workflow/pipeline-20251103.yml +++ b/.workflow/pipeline-20251103.yml @@ -27,19 +27,26 @@ stages: commands: - '# 设置NPM源,提升安装速度' - npm config set registry https://registry.npmmirror.com - - '' + - '# 安装pnpm' - npm add -g pnpm - - '' + - '# 安装依赖' + - pnpm i + - '# 检查lint' - pnpm lint - - '' + - '# 检查check' - pnpm check - - '' - - '# 执行编译命令' - - pnpm i && pnpm build:antd + - '# 执行编译命令antd' + - pnpm build:antd + - '# 执行编译命令ele' + - pnpm build:ele + - '# 执行编译命令naive' + - pnpm build:naive artifacts: - name: BUILD_ARTIFACT path: - ./apps/web-antd/dist/ + - ./apps/web-ele/dist/ + - ./apps/web-naive/dist/ caches: - ~/.npm - ~/.yarn