From 956c5825e44353ebc8a016fa5b708962ada01244 Mon Sep 17 00:00:00 2001 From: egelhaus <156946629+egelhaus@users.noreply.github.com> Date: Mon, 14 Apr 2025 03:11:02 +0200 Subject: [PATCH] Jenkinsfile aktualisieren --- Jenkinsfile | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 75c1ce0f..5d56f6b1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,23 +27,14 @@ pipeline { } } - stage('Run Unit Tests') { - steps { - sh 'npm test' - } - } - stage('Build Project') { steps { - sh 'npm run build 2>&1 | tee build_report.log' // Captures build output + sh 'npm run build' } } } post { always { - junit '**/reports/junit.xml' - archiveArtifacts artifacts: 'reports/**', fingerprint: true - archiveArtifacts artifacts: 'build_report.log', fingerprint: true cleanWs(cleanWhenNotBuilt: false, notFailBuild: true) } success {