From 9ae1a402601fda9118307b1b6d74154136488908 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sat, 4 Jun 2016 01:15:48 +0200 Subject: [PATCH] add gitlab ci --- .gitlab-ci.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..803bbe7 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,37 @@ +image: hosttoday/ht-docker-node:latest + +stages: +- test +- release +- page + +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 npm + - npmci trigger + only: + - tags + tags: + - docker