tscoverage/.gitlab-ci.yml

32 lines
379 B
YAML
Raw Normal View History

2016-05-26 19:18:14 +00:00
image: hosttoday/ht-docker-node
stages:
- test
- release
testLTS:
stage: test
script:
2016-05-26 20:38:23 +00:00
- npmci install 4
2016-05-26 20:41:06 +00:00
- npm install
2016-05-26 19:18:14 +00:00
- npm test
tags:
- docker
testSTABLE:
stage: test
script:
2016-05-26 20:38:23 +00:00
- npmci install stable
2016-05-26 20:41:06 +00:00
- npm install
2016-05-26 19:18:14 +00:00
- npm test
tags:
- docker
release:
stage: release
script:
- npm -v
only:
2016-05-29 19:04:44 +00:00
- tags
2016-05-26 19:18:14 +00:00
tags:
- docker