Skip to content

Commit 9903405

Browse files
committed
s
1 parent 7a18423 commit 9903405

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Jenkinsfile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,18 @@ pipeline {
55
args '-p 3000:3000'
66
}
77
}
8+
environment {
9+
CI = 'true'
10+
}
811
stages {
912
stage('Build') {
1013
steps {
11-
sh 'npm config set registry https://registry.npm.taobao.org && npm install --verbose'
14+
sh 'npm install --verbose'
15+
}
16+
}
17+
stage('Test') {
18+
steps {
19+
sh './jenkins/scrips/test.sh'
1220
}
1321
}
1422
}

0 commit comments

Comments
 (0)