commit | 7897e448ae0212c3e5d91c0c0dbf6098332fd3da | [log] [tgz] |
---|---|---|
author | Matteo Scandolo <matteo.scandolo@gmail.com> | Thu Mar 09 10:55:29 2017 -0800 |
committer | Matteo Scandolo <matteo.scandolo@gmail.com> | Thu Mar 09 10:55:29 2017 -0800 |
tree | aade0602714c37d688ef1217f7ab6bf4dbe8067c | |
parent | 83df8d2adb5164338b0f8101bea7ca80587b6b2e [diff] |
Installing node modules in Jenkinsfile Change-Id: I38218bf02ddbbe292b3d751559cc5b3cb99fc35b
diff --git a/Jenkinsfile b/Jenkinsfile index 6824302..eb324e6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile
@@ -15,6 +15,10 @@ dir('orchestration/xos-gui') { try { + + stage 'Install Node Modules' + sh 'npm install' + stage 'Check Code Style' sh 'npm run lint'