forgot to wrap the steps in a steps block
parent
282a07c5fb
commit
f86da2ed6f
|
|
@ -21,7 +21,9 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Code Linting') {
|
stage('Code Linting') {
|
||||||
sh 'bundle exec rubocop --format html --out rubocop.html'
|
steps {
|
||||||
|
sh 'bundle exec rubocop --format html --out rubocop.html'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
stage('Run tests') {
|
stage('Run tests') {
|
||||||
steps {
|
steps {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue