Add sample jenkinsfile

This commit is contained in:
TsJennyfer 2019-11-24 11:17:11 +01:00
parent 243888250d
commit 9ff7fb6ab8
1 changed files with 10 additions and 0 deletions

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent { docker { image 'node:6.3' } }
stages {
stage('build') {
steps {
sh 'npm --version'
}
}
}
}