thp-web/Jenkinsfile.groovy

21 lines
466 B
Groovy
Raw Normal View History

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