diff --git a/Jenkinsfile b/Jenkinsfile index 91a5f696878..bb1d8be7228 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -104,13 +104,13 @@ pipeline { def networkLowerCase = env.NETWORK.toLowerCase() def image = docker.build('cypress-setup:latest', '-f ./test/cypress/Dockerfile .') image.inside(""" - --network ${networkLowerCase}_default \ - -e TZ=Europe/Madrid \ - -e DOCKER=true \ - -e CI=true \ - -v .:/app \ - -w /app \ - """) { + --network ${networkLowerCase}_default + -e TZ=Europe/Madrid + -e DOCKER=true + -e CI=true + -v .:/app + -w /app + """.stripIndent()) { sh 'pnpm exec cypress run --browser chromium' } }