add testing state for Jenkins
All checks were successful
InnoHub Processor/tatort/pipeline/head This commit looks good

This commit is contained in:
2025-09-05 08:41:37 +02:00
parent 98794a29e1
commit e66de4059e

8
Jenkinsfile vendored
View File

@@ -57,7 +57,7 @@ pipeline {
} }
} }
stage('Test & Security Audit') { stage('Security Audit') {
steps { steps {
script { script {
didRun = true didRun = true
@@ -67,6 +67,12 @@ pipeline {
} }
} }
stage('Run Tests') {
steps {
sh 'npm run test'
}
}
stage('SonarQube Analysis') { stage('SonarQube Analysis') {
steps { steps {
withSonarQubeEnv('sonarqube') { withSonarQubeEnv('sonarqube') {