tscoverage/.gitlab-ci.yml

34 lines
387 B
YAML
Raw Normal View History

2016-05-26 19:18:14 +00:00
image: hosttoday/ht-docker-node
stages:
- test
- release
variables:
2016-05-26 19:19:41 +00:00
LTS: "4"
STABLE: "stable"
2016-05-26 19:18:14 +00:00
testLTS:
stage: test
script:
- nvm install $LTS
- npm test
tags:
- docker
testSTABLE:
stage: test
script:
- nvm install $STABLE
- npm test
tags:
- docker
release:
stage: release
script:
- npm -v
only:
- master
tags:
- docker