From 06a64fa0188e5c95dd01806f66b0da1b66e96929 Mon Sep 17 00:00:00 2001 From: Bangara Raju Kottedi Date: Mon, 16 Feb 2026 18:28:53 +0530 Subject: [PATCH] fix: add npm install step before building Angular --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index 371e1a2..2411cb6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,6 +32,7 @@ pipeline { stage('Build Angular') { steps { sh ''' + npm install ng build --configuration production --base-href /admin/ ''' }