forgot to wrap the steps in a steps block

This commit is contained in:
2023-10-22 13:19:30 -07:00
parent 282a07c5fb
commit f86da2ed6f
Vendored
+3 -1
View File
@@ -21,7 +21,9 @@ pipeline {
}
}
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') {
steps {