From 152232c8e735a60545cffcff5decd858a62a95c9 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sat, 18 Jun 2016 00:26:17 +0200 Subject: [PATCH] add gitlab-co.yml --- .gitlab-ci.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e69de29..f06a322 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -0,0 +1,36 @@ +image: hosttoday/ht-docker-node:npmci + +stages: +- test +- release + +testLEGACY: + stage: test + script: + - npmci test legacy + tags: + - docker + allow_failure: true + +testLTS: + stage: test + script: + - npmci test lts + tags: + - docker + +testSTABLE: + stage: test + script: + - npmci test stable + tags: + - docker + +release: + stage: release + script: + - npmci publish + only: + - tags + tags: + - docker \ No newline at end of file