h-selfdelivery-admin-panel-p/JenkinsBuildProd
2023-01-13 10:58:08 +04:00

13 lines
228 B
Plaintext

node('Lithium'){
stage('get new version to repo') {
checkout scm
}
stage('Install dependencies') {
sh 'npm install'
}
stage('build project') {
sh 'npm run build-prod:lithium'
}
}