From 81e42a9b13f69cf1822fa06c087d31f0232d84d5 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Mon, 30 May 2016 06:14:21 +0200 Subject: [PATCH] add .gitlab-ci.yml --- .gitlab-ci.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..6dee704 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,28 @@ +image: hosttoday/ht-docker-node:latest + +stages: +- test +- release + +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