test jenkins

This commit is contained in:
Fedor Katurov 2020-03-20 21:15:42 +07:00
parent 4d828baf5c
commit bb5310107b

10
Jenkinsfile vendored
View file

@ -32,12 +32,16 @@ pipeline {
} }
stage('Copy ENV files') { stage('Copy ENV files') {
sh "cp -a ${ENV} ./" steps {
sh "cp -a ${ENV} ./"
}
} }
stage('Build') { stage('Build') {
sh 'npm install' steps {
sh 'npm run build' sh 'npm install'
sh 'npm run build'
}
} }
stage('Deploy: dev') { stage('Deploy: dev') {