From ecbad3e38e4a93f57c004c6cab35030d6c13a522 Mon Sep 17 00:00:00 2001 From: Sushil Gupta Date: Tue, 30 Apr 2024 09:23:29 +0530 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 13439fb..73bd09c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -76,8 +76,9 @@ pipeline { } } steps { - sh 'npm ci' - sh 'npm run build' + sh 'npm i -g pnpm' + sh 'pnpm ci' + sh 'pnpm run build' } } @@ -89,8 +90,9 @@ pipeline { } } steps { - sh 'npm ci' - sh 'npm run build' + sh 'npm i -g pnpm' + sh 'pnpm ci' + sh 'pnpm run build' } } }