smartsocket/.gitlab-ci.yml

73 lines
991 B
YAML
Raw Normal View History

2017-07-07 20:02:19 +00:00
# gitzone standard
image: hosttoday/ht-docker-node:npmci
cache:
paths:
- .yarn/
key: "$CI_BUILD_STAGE"
2016-08-06 21:27:53 +00:00
stages:
- test
- release
2017-07-07 20:02:19 +00:00
- trigger
- pages
2016-08-06 21:27:53 +00:00
testLEGACY:
stage: test
script:
- npmci test legacy
2017-07-07 20:02:19 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2016-08-06 21:27:53 +00:00
tags:
- docker
2017-07-07 20:02:19 +00:00
allow_failure: true
2016-08-06 21:27:53 +00:00
testLTS:
stage: test
script:
- npmci test lts
2017-07-07 20:02:19 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2016-08-06 21:27:53 +00:00
tags:
- docker
testSTABLE:
stage: test
script:
- npmci test stable
2017-07-07 20:02:19 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2016-08-06 21:27:53 +00:00
tags:
- docker
release:
stage: release
script:
- npmci publish
only:
- tags
tags:
- docker
2017-07-07 20:02:19 +00:00
trigger:
stage: trigger
script:
- npmci trigger
only:
- tags
tags:
- docker
pages:
image: hosttoday/ht-docker-node:npmci
stage: pages
script:
- npmci command yarn global add npmpage
- npmci command npmpage
tags:
- docker
only:
- tags
artifacts:
expire_in: 1 week
paths:
- public
allow_failure: true