thp-web/Jenkinsfile.groovy

13 lines
257 B
Groovy
Raw Normal View History

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