smarthbs/.gitlab-ci.yml

72 lines
986 B
YAML
Raw Normal View History

2017-02-26 01:09:41 +00:00
# gitzone standard
2017-03-14 18:33:04 +00:00
image: hosttoday/ht-docker-node:npmci
2017-02-26 01:09:41 +00:00
2017-03-14 19:15:31 +00:00
cache:
paths:
- .yarn/
key: "$CI_BUILD_STAGE"
2017-02-26 01:09:41 +00:00
stages:
- test
- release
- trigger
- pages
testLEGACY:
stage: test
script:
- npmci test legacy
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
allow_failure: true
testLTS:
stage: test
script:
- npmci test lts
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
testSTABLE:
stage: test
script:
- npmci test stable
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
release:
stage: release
script:
- npmci publish
only:
- tags
tags:
- docker
trigger:
stage: trigger
script:
- npmci trigger
only:
- tags
tags:
- docker
pages:
2017-03-14 19:15:31 +00:00
image: hosttoday/ht-docker-node:npmci
2017-02-26 01:09:41 +00:00
stage: pages
script:
2017-03-14 19:15:31 +00:00
- npmci command yarn global add npmpage
2017-02-26 01:09:41 +00:00
- npmci command npmpage --publish gitlab
2017-03-14 19:15:31 +00:00
tags:
- docker
2017-02-26 01:09:41 +00:00
only:
- tags
artifacts:
expire_in: 1 week
paths:
- public