This commit is contained in:
ISA
2025-08-28 09:00:11 +02:00
parent f9f358a678
commit 93809a85a4
6 changed files with 13 additions and 8 deletions

6
Jenkinsfile vendored
View File

@@ -3,13 +3,13 @@ pipeline {
stages {
stage('Install dependencies') {
steps {
bat 'npm ci'
sh 'npm ci'
}
}
stage('Run Playwright tests') {
steps {
bat 'npx playwright install'
bat 'npx playwright test'
sh 'npx playwright install'
sh 'npx playwright test'
}
}
}