From b664645c85d50821091b6149c5d3efaa763914c4 Mon Sep 17 00:00:00 2001 From: Jesse James Isler Date: Thu, 9 Jun 2022 11:38:54 +0200 Subject: [PATCH] ... --- Jenkinsfile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c0a1c30..a1602d0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,16 +6,11 @@ pipeline { stages { stage('NPM Install') { - withEnv(["NPM_CONFIG_LOGLEVEL=warn"]) { sh 'npm install' - } } stage('Test') { - withEnv(["CHROME_BIN=/usr/bin/chromium-browser"]) { sh 'ng test --progress=false --watch false' - } - junit '**/test-results.xml' } stage('Lint') { @@ -23,9 +18,7 @@ pipeline { } stage('Build') { - milestone() sh 'ng build --prod --aot --sm --progress=false' } - } }