Browse Source

add jenkinsfile

huqi 6 năm trước cách đây
mục cha
commit
72a21357e9
1 tập tin đã thay đổi với 10 bổ sung0 xóa
  1. 10 0
      jenkinsfile

+ 10 - 0
jenkinsfile

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