diff --git a/build/Jenkinsfile b/build/Jenkinsfile index 80abc36..06fb9e9 100644 --- a/build/Jenkinsfile +++ b/build/Jenkinsfile @@ -15,7 +15,7 @@ pipeline { script { catchError(buildResult: 'UNSTABLE', stageResult: 'UNSTABLE') { docker.build('node', '-f build/Dockerfile .').inside { - sh 'npm install && npm run build' + sh 'npm install && npm run build && npx playwright install --with-deps chromium && npm run test' } } archiveArtifacts artifacts: 'dist/**', allowEmptyArchive: false