update project to use gitlab-ci

This commit is contained in:
2016-05-30 05:58:56 +02:00
parent 41592a4d2f
commit 44d9782487
2 changed files with 31 additions and 3 deletions

28
.gitlab-ci.yml Normal file
View File

@@ -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