thp-web/Jenkinsfile.groovy

13 lines
257 B
Groovy

pipeline {
agent any
environment {
PATH = "/var/lib/jenkins/.bun/bin:${env.PATH}"
}
stages {
stage('Test') {
echo 'Testing...'
echo 'Is Bun working?...'
sh 'bun --version'
}
}
}