added check if pipeline job was running
Some checks failed
InnoHub Processor/tatort/pipeline/head There was a failure building this commit

This commit is contained in:
2025-07-01 09:25:21 +02:00
parent 49907da1b1
commit 95a9364391

12
Jenkinsfile vendored
View File

@@ -29,19 +29,19 @@ pipeline {
stages {
stage('Install Dependencies') {
script {
didRun = true
}
steps {
script {
didRun = true
}
sh 'npm ci'
}
}
stage('Test & Security Audit') {
script {
didRun = true
}
steps {
script {
didRun = true
}
echo 'Start checking security vulnerabilities in npm packages'
sh 'npm audit --audit-level=moderate'
}