dsite/Jenkinsfile
Ching e82ac3ae3d feat(Jenkinsfile): [M] modify file name
[M] modify file name

Signed-off-by: Ching <loooching@gmail.com>
2022-01-16 01:11:46 +08:00

16 lines
273 B
Groovy

pipeline {
agent {
docker {
image 'node:6-alpine'
args '-p 3000:3000'
}
}
stages {
stage('Build') {
steps {
sh 'cd frontend; npm install; npm run build'
}
}
}
}