thp-lang.org/Jenkinsfile.groovy

25 lines
427 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 'npm build'
}
}
}
}