Add simple Jenkinsfile
All checks were successful
Core Repos/Homepage/pipeline/head This commit looks good

This commit is contained in:
Cameron Cordes
2020-04-18 08:08:34 -04:00
parent b85aca7c3e
commit 45fad8586a

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'
}
}
}
}