npmci/.gitlab-ci.yml

30 lines
350 B
YAML
Raw Normal View History

2016-05-30 00:28:47 +00:00
image: hosttoday/ht-docker-node
stages:
- test
- release
testLTS:
stage: test
script:
- npmci install 4
- npm install
- npm test
tags:
- docker
testSTABLE:
stage: test
script:
2016-05-30 00:35:44 +00:00
- npmci test stable
2016-05-30 00:28:47 +00:00
tags:
- docker
release:
stage: release
script:
2016-05-30 00:35:44 +00:00
- npmci publish
2016-05-30 00:28:47 +00:00
only:
- tags
tags:
- docker