smartcli/.gitlab-ci.yml

96 lines
1.3 KiB
YAML
Raw Normal View History

2017-04-22 19:04:59 +00:00
# gitzone standard
image: hosttoday/ht-docker-node:npmci
cache:
paths:
- .yarn/
key: "$CI_BUILD_STAGE"
2016-06-09 12:02:21 +00:00
stages:
2018-01-27 01:20:41 +00:00
- security
2016-06-09 12:02:21 +00:00
- test
- release
2017-04-22 19:04:59 +00:00
- trigger
- pages
2016-06-09 12:02:21 +00:00
mirror:
stage: security
script:
- npmci git mirror
tags:
- docker
snyk:
2018-01-27 01:20:41 +00:00
stage: security
script:
2018-01-27 01:23:24 +00:00
- npmci command yarn global add snyk
2018-01-27 17:02:01 +00:00
- npmci command yarn install --ignore-scripts
2018-01-27 01:27:55 +00:00
- npmci command snyk test
2018-01-27 01:21:53 +00:00
tags:
- docker
2018-01-27 01:20:41 +00:00
testLEGACY:
stage: test
script:
- npmci node install legacy
- npmci npm install
- npmci npm test
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
allow_failure: true
2016-06-09 12:02:21 +00:00
testLTS:
stage: test
script:
- npmci node install lts
- npmci npm install
- npmci npm test
2017-04-22 19:04:59 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2016-06-09 12:02:21 +00:00
tags:
- docker
2016-06-09 12:02:21 +00:00
testSTABLE:
stage: test
script:
- npmci node install stable
- npmci npm install
- npmci npm test
2017-04-22 19:04:59 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2016-06-09 12:02:21 +00:00
tags:
- docker
2016-06-09 12:02:21 +00:00
release:
stage: release
script:
- npmci npm prepare
- npmci npm publish
2016-06-09 12:02:21 +00:00
only:
- tags
2016-06-09 12:02:21 +00:00
tags:
- docker
2016-09-04 15:32:26 +00:00
2017-04-22 19:04:59 +00:00
trigger:
stage: trigger
script:
- npmci trigger
2017-04-22 19:04:59 +00:00
only:
- tags
2017-04-22 19:04:59 +00:00
tags:
- docker
2017-04-22 19:04:59 +00:00
2016-09-04 15:32:26 +00:00
pages:
2017-04-22 19:04:59 +00:00
image: hosttoday/ht-docker-node:npmci
stage: pages
2016-09-04 15:32:26 +00:00
script:
2017-04-22 19:04:59 +00:00
- npmci command yarn global add npmpage
- npmci command npmpage
tags:
- docker
2016-09-04 15:32:26 +00:00
only:
- tags
artifacts:
expire_in: 1 week
paths:
2017-04-22 19:04:59 +00:00
- public