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') {
echo 'Testing...' steps {
echo 'Is Bun working?...' echo 'Testing...'
sh 'bun --version' echo 'Is Bun working?...'
sh 'bun --version'
}
} }
} }
} }