diff --git a/Jenkinsfile.groovy b/Jenkinsfile.groovy index fc6dc23..12bf65f 100644 --- a/Jenkinsfile.groovy +++ b/Jenkinsfile.groovy @@ -5,9 +5,11 @@ pipeline { } stages { stage('Test') { - echo 'Testing...' - echo 'Is Bun working?...' - sh 'bun --version' + steps { + echo 'Testing...' + echo 'Is Bun working?...' + sh 'bun --version' + } } } } \ No newline at end of file