forgot to wrap the steps in a steps block

pull/29/head
Adam Townsend 2023-10-22 13:19:30 -07:00
parent 282a07c5fb
commit f86da2ed6f
1 changed files with 3 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -21,8 +21,10 @@ pipeline {
} }
} }
stage('Code Linting') { stage('Code Linting') {
steps {
sh 'bundle exec rubocop --format html --out rubocop.html' sh 'bundle exec rubocop --format html --out rubocop.html'
} }
}
stage('Run tests') { stage('Run tests') {
steps { steps {
catchError(buildResult: 'UNSTABLE', stageResult: 'FAILURE') { catchError(buildResult: 'UNSTABLE', stageResult: 'FAILURE') {