added jenkins file

Added jenkins file to test for nodejs alpine builds
This commit is contained in:
admin-tea
2020-07-17 17:27:22 +02:00
parent b889feb5a1
commit 097af7a487
+10
View File
@@ -0,0 +1,10 @@
pipeline {
agent { docker { image 'node:12-alpine' } }
stages {
stage('build') {
steps {
sh 'npm --version'
}
}
}
}