fix: add npm install step before building Angular
Some checks failed
bangararaju.kottedi.in/admin/admin-uat-new/pipeline/head There was a failure building this commit

This commit is contained in:
Bangara Raju Kottedi 2026-02-16 18:28:53 +05:30
parent 1bec713692
commit 06a64fa018

1
Jenkinsfile vendored
View File

@ -32,6 +32,7 @@ pipeline {
stage('Build Angular') {
steps {
sh '''
npm install
ng build --configuration production --base-href /admin/
'''
}