master
Araozu 2023-10-25 20:53:43 -05:00
parent ce678fc333
commit bcbad72cdc
1 changed files with 5 additions and 3 deletions

View File

@ -5,9 +5,11 @@ pipeline {
} }
stages { stages {
stage('Test') { stage('Test') {
steps {
echo 'Testing...' echo 'Testing...'
echo 'Is Bun working?...' echo 'Is Bun working?...'
sh 'bun --version' sh 'bun --version'
} }
} }
} }
}