diff --git a/Jenkinsfile b/Jenkinsfile index 44df58f..f348221 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,8 +10,9 @@ pipeline { stages { stage('Build') { steps { - sh 'npm ci' - sh 'npm run dev' + sh 'npm install -- production' + sh 'npm run build' + sh 'npm run start' } } }