From c8ea4380f9ca141856fb6e63aa4d99607ec68505 Mon Sep 17 00:00:00 2001 From: Reguel Wermelinger Date: Thu, 11 Jan 2024 09:11:48 +0100 Subject: [PATCH] test --- build/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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