tscoverage/.gitlab-ci.yml
2016-05-26 22:37:13 +02:00

34 lines
391 B
YAML

image: hosttoday/ht-docker-node
stages:
- test
- release
variables:
LTS: "4"
STABLE: "stable"
testLTS:
stage: test
script:
- npmci install $LTS
- npm test
tags:
- docker
testSTABLE:
stage: test
script:
- npmci install $STABLE
- npm test
tags:
- docker
release:
stage: release
script:
- npm -v
only:
- master
tags:
- docker