This repository has been archived on 2024-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
smartchai/.gitlab-ci.yml

72 lines
969 B
YAML
Raw Normal View History

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