Browse Source

add jenkinsfile

huqi 6 years ago
parent
commit
72a21357e9
1 changed files with 10 additions and 0 deletions
  1. 10 0
      jenkinsfile

+ 10 - 0
jenkinsfile

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