From 0406998e92684b9842ae3223b2e91e40ab9c6718 Mon Sep 17 00:00:00 2001 From: PhilKunz Date: Mon, 18 Jul 2016 18:55:34 +0200 Subject: [PATCH] test --- .gitlab-ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 814f131..022ce43 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: hosttoday/ht-docker-node:npmts +image: hosttoday/ht-docker-node:stable stages: - test @@ -7,12 +7,13 @@ stages: before_script: - - npm uninstall -g npmci - npm install -g npmci testLTS: stage: test script: + - npmci install lts + - npmci command npm install -g npmts - npmci test lts tags: - docker @@ -20,6 +21,8 @@ testLTS: testSTABLE: stage: test script: + - npmci install stable + - npmci command npm install -g npmts - npmci test stable tags: - docker @@ -27,6 +30,8 @@ testSTABLE: testLEGACY: stage: test script: + - npmci install legacy + - npmci command npm install -g npmts - npmci test legacy tags: - docker