Files
tatort/Jenkinsfile
Jared 8b276f9828
All checks were successful
InnoHub Processor/tatort/pipeline/head This commit looks good
added docker
2025-06-25 11:50:13 +02:00

48 lines
905 B
Groovy

pipeline {
agent any
tools {
nodejs 'NodeJS-24.2.0'
}
stages {
// stage('Install Dependencies') {
// steps {
// sh 'npm ci'
// }
// }
// stage('Test & Security Audit') {
// steps {
// echo 'Start checking security vulnerabilities in npm packages'
// sh 'npm audit'
// }
// }
// stage('Build') {
// when {
// branch 'development'
// }
// steps {
// sh 'npm run build'
// }
// }
stage('Containerize') {
steps {
sh 'docker -h'
}
}
}
post {
success {
echo 'Pipeline erfolgreich!'
}
failure {
echo 'Pipeline fehlgeschlagen!'
}
}
}