update scome scripts

This commit is contained in:
Philipp Kunz 2016-05-30 02:35:44 +02:00
parent 911392e00e
commit 3f126d849f
2 changed files with 4 additions and 4 deletions

View File

@ -16,16 +16,14 @@ testLTS:
testSTABLE:
stage: test
script:
- npmci install stable
- npm install
- npm test
- npmci test stable
tags:
- docker
release:
stage: release
script:
- npm -v
- npmci publish
only:
- tags
tags:

View File

@ -5,6 +5,8 @@ export let test = (versionArg) => {
let done = plugins.q.defer();
install(versionArg)
.then(function(){
plugins.beautylog.info("now installing dependencies:");
plugins.shelljs.exec("npm install");
plugins.beautylog.info("now starting tests:");
plugins.shelljs.exec("npm test");
plugins.beautylog.success("test finished");