thp-lang.org/Jenkinsfile
2024-10-05 06:52:02 -05:00

31 lines
352 B
Groovy

pipeline {
agent {
docker {
image 'node:22'
}
}
stages {
stage('Install pnpm') {
steps {
sh 'npm i -g pnpm'
}
}
stage('Install dependencies') {
steps {
sh 'pnpm i'
}
}
stage('Buid') {
steps {
sh 'pnpm build'
}
}
stage('Deploy') {
steps {
sh 'mv dist/* /var/www/thp-lang.org/'
}
}
}
}