ci043-add-jenkins-ci #13

Merged
jared merged 36 commits from ci043-add-jenkins-ci into development 2025-06-25 16:40:38 +02:00
Showing only changes of commit 8b276f9828 - Show all commits

38
Jenkinsfile vendored
View File

@@ -7,27 +7,27 @@ pipeline {
} }
stages { stages {
stage('Install Dependencies') { // stage('Install Dependencies') {
steps { // steps {
sh 'npm ci' // sh 'npm ci'
} // }
} // }
stage('Test & Security Audit') { // stage('Test & Security Audit') {
steps { // steps {
echo 'Start checking security vulnerabilities in npm packages' // echo 'Start checking security vulnerabilities in npm packages'
sh 'npm audit' // sh 'npm audit'
} // }
} // }
stage('Build') { // stage('Build') {
when { // when {
branch 'development' // branch 'development'
} // }
steps { // steps {
sh 'npm run build' // sh 'npm run build'
} // }
} // }
stage('Containerize') { stage('Containerize') {
steps { steps {