From 3f126d849f45b0a4bd2f6e0c775731aad74b61df Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Mon, 30 May 2016 02:35:44 +0200 Subject: [PATCH] update scome scripts --- .gitlab-ci.yml | 6 ++---- ts/npmci.test.ts | 2 ++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a28dec0..0fec255 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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: diff --git a/ts/npmci.test.ts b/ts/npmci.test.ts index 9102d08..65ad356 100644 --- a/ts/npmci.test.ts +++ b/ts/npmci.test.ts @@ -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");