1
0

added gw spotlessCheck to Jenkins pipeline

This commit is contained in:
Michael Hoennig
2019-04-30 12:53:52 +02:00
parent b5d50acfbd
commit 13fb78a622
2 changed files with 7 additions and 3 deletions

4
Jenkinsfile vendored
View File

@ -10,9 +10,9 @@ node {
sh "java -version"
}
stage('clean') {
stage('clean+spotless') {
sh "chmod +x gradlew"
sh "./gradlew clean --no-daemon"
sh "./gradlew clean spotlessCheck --no-daemon"
}
stage('npm install') {