Merge branch 'develop' of git.tunpok.com:ching/dsite into develop

This commit is contained in:
Ching 2022-01-16 13:17:33 +08:00
commit 3e206522e8

6
Jenkinsfile vendored
View File

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