jenkins-docker #17

Merged
jared merged 26 commits from jenkins-docker into development 2025-07-01 13:30:25 +02:00
Showing only changes of commit 95a9364391 - Show all commits

4
Jenkinsfile vendored
View File

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