tscoverage/.gitlab-ci.yml
2016-05-26 22:45:40 +02:00

36 lines
435 B
YAML

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