h-selfdelivery-admin-panel-p/JenkinsBuildProd
2023-01-10 14:00:43 +04:00

13 lines
228 B
Plaintext

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