From efb82caf1acd96bff6f6cee5bd6fcba1c6464853 Mon Sep 17 00:00:00 2001 From: jianghao <332515344@qq.com> Date: Mon, 29 Dec 2025 15:55:25 +0800 Subject: [PATCH] Jenkins build --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1378672..4d7ce78 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -65,8 +65,8 @@ pipeline { // 安装 pnpm sh 'npm install -g pnpm' - // 使用 pnpm 安装依赖,使用 --frozen-lockfile 确保依赖一致性 - sh 'pnpm install --frozen-lockfile' + // 使用 pnpm 安装依赖,由于锁文件兼容性问题,不使用 --frozen-lockfile + sh 'pnpm install --no-frozen-lockfile' // 构建项目 sh 'pnpm run build'