Przeglądaj źródła

add jenkinsfile

huqi 5 lat temu
rodzic
commit
72a21357e9
1 zmienionych plików z 10 dodań i 0 usunięć
  1. 10 0
      jenkinsfile

+ 10 - 0
jenkinsfile

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