ci(bstein-home): run frontend test stage under bash

This commit is contained in:
Brad Stein 2026-04-19 15:01:31 -03:00
parent 6e3beb7e18
commit dc59f4150c

20
Jenkinsfile vendored
View File

@ -262,16 +262,16 @@ PY
stage('Frontend tests') {
steps {
container('frontend') {
sh '''
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
''')
}
}
}