Commit 090adb46 by Administrator

Update Jenkinsfile

parent 9681541a
pipeline { pipeline {
agent any agent {
docker {
image 'node:6-alpine'
args '-p 3000:3000 -p 5000:5000'
}
}
environment {
CI = 'true'
}
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
sh 'echo "Hello world!"' sh 'npm install'
}
}
stage('Test') {
steps {
sh './jenkins/scripts/test.sh'
} }
} }
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment