diff --git a/Jenkinsfile b/Jenkinsfile index 902d14f40..1e367f042 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,6 +28,17 @@ pipeline { sh 'npm test' } } + stage('Run Cypress Tests') { + steps { + script { + // Install Cypress (falls nicht bereits installiert) + sh 'npx cypress install' + + // Cypress Tests ausführen + sh 'npx cypress run' + } + } + } } post {