From 46ed6fc6df1b5f5ecf4a7be1a43f842776cc5a51 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Thu, 14 Jul 2016 12:02:59 +0200 Subject: [PATCH] add gitlab ci yml --- .gitlab-ci.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..d94bacb --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,35 @@ +image: hosttoday/ht-docker-node:npmts + +stages: +- test +- release + +testLEGACY: + stage: test + script: + - npmci test legacy + tags: + - docker + +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