Explorar el Código

add jenkinsfile

huqi hace 5 años
padre
commit
72a21357e9
Se han modificado 1 ficheros con 10 adiciones y 0 borrados
  1. 10 0
      jenkinsfile

+ 10 - 0
jenkinsfile

@@ -0,0 +1,10 @@
+pipeline {
+    agent {label: "132"}
+    stages {
+        stage('build') {
+            steps {
+                bat 'npm --v'
+            }
+        }
+    }
+}