smartfile/.gitlab-ci.yml

37 lines
454 B
YAML
Raw Normal View History

2016-06-23 16:41:45 +00:00
image: hosttoday/ht-docker-node:npmts
stages:
- test
- release
testLEGACY:
stage: test
script:
- npmci test legacy
tags:
- docker
allow_failure: true
testLTS:
stage: test
script:
- npmci test lts
tags:
- docker
testSTABLE:
stage: test
script:
- npmci test stable
tags:
- docker
release:
stage: release
2016-07-20 00:34:14 +00:00
environment: npm_registry
2016-06-23 16:41:45 +00:00
script:
- npmci publish
only:
- tags
tags:
- docker