8714-devToTest #1547

Merged
alexm merged 712 commits from 8714-devToTest into test 2025-03-04 14:08:01 +00:00
1 changed files with 4 additions and 23 deletions
Showing only changes of commit ed9f21170e - Show all commits

27
Jenkinsfile vendored
View File

@ -66,25 +66,6 @@ pipeline {
sh 'pnpm install --prefer-offline'
}
}
// stage('Test') {
// when {
// expression { !PROTECTED_BRANCH }
// }
// environment {
// NODE_ENV = ""
// }
// steps {
// sh 'pnpm run test:unit:ci'
// }
// post {
// always {
// junit(
// testResults: 'junitresults.xml',
// allowEmptyResults: true
// )
// }
// }
// }
stage('E2E') {
when {
expression { !PROTECTED_BRANCH }
@ -92,11 +73,11 @@ pipeline {
environment {
NODE_ENV = ""
}
script {
def packageJson = readJSON file: 'package.json'
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
}
steps {
script {
def packageJson = readJSON file: 'package.json'
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
}
sh 'docker-compose -f docker-compose.e2e.yml up front --build'
}
post {