This is an automated email from the ASF dual-hosted git repository. jeqo pushed a commit to branch jenkins-test in repository https://gitbox.apache.org/repos/asf/incubator-zipkin-api.git
commit 868c295fcefe8f062774f37214c3ab554a8d8173 Author: Jorge Quilcate Otoya <[email protected]> AuthorDate: Sun May 5 02:21:27 2019 +0200 feat: test with jenkins --- Jenkinsfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 9a05384..96492fa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,6 +22,7 @@ pipeline { tools { jdk 'JDK 1.8 (latest)' + nodejs "node" } options { @@ -50,6 +51,13 @@ pipeline { } } + stage('Test') { + steps { + sh 'npm install' + sh 'npm run test' + } + } + stage('Publish snapshot') { when { branch 'master'
