From f86da2ed6f26f63547e621beff8f0df523e1b475 Mon Sep 17 00:00:00 2001 From: Adam Townsend Date: Sun, 22 Oct 2023 13:19:30 -0700 Subject: [PATCH] forgot to wrap the steps in a steps block --- Jenkinsfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 63c4baa..ca63cd3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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 {