From 7d7c719fc7171b11e20e5bca77dc80fd47114b3f Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Sun, 19 Apr 2026 15:01:31 -0300 Subject: [PATCH] ci(bstein-home): run frontend test stage under bash --- Jenkinsfile | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0301070..7415d95 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -262,17 +262,16 @@ PY stage('Frontend tests') { steps { container('frontend') { - sh ''' - #!/usr/bin/env bash - set -euo pipefail - mkdir -p build - cd frontend - npm ci - npm run lint - npm run test:unit - npm run test:component - npm run test:e2e - ''' + sh(script: '''#!/usr/bin/env bash +set -euo pipefail +mkdir -p build +cd frontend +npm ci +npm run lint +npm run test:unit +npm run test:component +npm run test:e2e +''') } } }