From b9d5592f0f56d345afe54be71747d777572f78c1 Mon Sep 17 00:00:00 2001 From: s464930 Date: Fri, 10 Dec 2021 22:46:13 +0100 Subject: [PATCH] npm for prod --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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' } } }