feature/jenkins-ci #1

Merged
cameron merged 7 commits from feature/jenkins-ci into master 2020-04-18 17:33:39 +00:00
Showing only changes of commit 45fad8586a - Show all commits

10
Jenkinsfile vendored Normal file
View File

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