diff --git a/Jenkinsfile.groovy b/Jenkinsfile.groovy index 21b2b41..638c863 100644 --- a/Jenkinsfile.groovy +++ b/Jenkinsfile.groovy @@ -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' }