thp-lang.org/Jenkinsfile.groovy

20 lines
328 B
Groovy
Raw Normal View History

2023-10-26 01:51:20 +00:00
pipeline {
2024-10-04 20:54:44 +00:00
agent {
2024-10-04 22:08:55 +00:00
docker {
image 'gplane/pnpm:9.11.0'
}
2023-10-26 01:51:20 +00:00
}
stages {
2024-10-04 22:08:55 +00:00
stage('Install dependencies') {
steps {
sh 'pnpm i'
}
}
stage('Buid') {
2023-10-26 01:53:43 +00:00
steps {
2024-10-04 22:08:55 +00:00
sh 'pnpm build'
2023-10-26 02:10:48 +00:00
}
}
2023-10-26 01:51:20 +00:00
}
2024-10-04 20:54:44 +00:00
}