fix: Jenkinsfile

This commit is contained in:
ISA
2025-08-28 13:34:11 +02:00
parent e8477640e2
commit 8117ebdf45
6 changed files with 16 additions and 5 deletions

6
Jenkinsfile vendored
View File

@@ -6,6 +6,12 @@ pipeline {
sh 'npm ci'
}
}
stage('Start Webserver') {
steps {
sh 'nohup npm run dev &'
sleep(time: 20, unit: 'SECONDS') // Wartezeit für Server-Start
}
}
stage('Run Playwright tests') {
steps {
sh 'npx playwright install'