diff --git a/Jenkinsfile b/Jenkinsfile index 28cde92..d3b5247 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -57,7 +57,7 @@ pipeline { } } - stage('Test & Security Audit') { + stage('Security Audit') { steps { script { didRun = true @@ -67,6 +67,12 @@ pipeline { } } + stage('Run Tests') { + steps { + sh 'npm run test' + } + } + stage('SonarQube Analysis') { steps { withSonarQubeEnv('sonarqube') {