Skip to content

Commit

Permalink
test: Allow yarn.lock change in bundlewatch
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinab25 committed Aug 30, 2024
1 parent 638df09 commit cfb05b0
Showing 1 changed file with 23 additions and 21 deletions.
44 changes: 23 additions & 21 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,29 +67,31 @@ pipeline {
}
}

)
}
}

stage('Bundlewatch') {
when {
branch 'develop'
}
steps {
node(label: 'docker-big-jobs') {
script {
checkout scm
env.NODEJS_HOME = "${tool 'NodeJS'}"
env.PATH="${env.NODEJS_HOME}/bin:${env.PATH}"
env.CI=false
sh "yarn"
sh "yarn config set -H enableImmutableInstalls false"
sh "make develop"
sh "make install"
sh "make build"
sh "make bundlewatch"
stage('Bundlewatch') {
when {
branch 'develop'
}
steps {
node(label: 'docker-big-jobs') {
script {
checkout scm
env.NODEJS_HOME = "${tool 'NodeJS'}"
env.PATH="${env.NODEJS_HOME}/bin:${env.PATH}"
env.CI=false
sh "yarn"
sh "env"
sh "yarn config"
sh "yarn config set -H enableImmutableInstalls false"
sh "make develop"
sh "make install"
sh "make build"
sh "make bundlewatch"
}
}
}
}
}
)
}
}

Expand Down

0 comments on commit cfb05b0

Please sign in to comment.