master
Araozu 2023-10-25 21:01:14 -05:00
parent 9a9bc37b43
commit bf031f3b1e
1 changed files with 8 additions and 1 deletions

View File

@ -11,9 +11,16 @@ pipeline {
sh 'bun --version'
}
}
stage('Build') {
stage('Install') {
steps {
sh 'bun install -p'
}
}
stage('Build') {
environment {
PATH = "${env.WORKSPACE}/node_modules/.bin:${env.PATH}"
}
steps {
sh 'bun tailwind:build'
sh 'md-docs'
}