cloudflare/.gitlab-ci.yml

43 lines
481 B
YAML
Raw Normal View History

2016-06-19 18:09:41 +00:00
image: hosttoday/ht-docker-node:npmts
2016-05-30 04:09:13 +00:00
stages:
2016-06-21 17:08:31 +00:00
- test1
- test2
- test3
2016-05-30 04:09:13 +00:00
- release
2016-06-19 18:09:41 +00:00
testLEGACY:
2016-06-21 17:08:31 +00:00
stage: test1
2016-06-19 18:09:41 +00:00
script:
2016-06-21 17:08:31 +00:00
- npmci test legacy
2016-06-21 17:11:45 +00:00
only:
- tags
2016-06-19 18:09:41 +00:00
tags:
- docker
2016-05-30 04:09:13 +00:00
testLTS:
2016-06-21 17:08:31 +00:00
stage: test2
2016-05-30 04:09:13 +00:00
script:
- npmci test lts
2016-06-21 17:11:45 +00:00
only:
- tags
2016-05-30 04:09:13 +00:00
tags:
- docker
testSTABLE:
2016-06-21 17:08:31 +00:00
stage: test3
2016-05-30 04:09:13 +00:00
script:
- npmci test stable
2016-06-21 17:11:45 +00:00
only:
- tags
2016-05-30 04:09:13 +00:00
tags:
- docker
release:
stage: release
script:
- npmci publish
only:
- tags
tags:
- docker