smartenv/.gitlab-ci.yml

97 lines
1.4 KiB
YAML
Raw Permalink Normal View History

2017-04-19 18:06:21 +00:00
# gitzone standard
image: hosttoday/ht-docker-node:npmci
cache:
paths:
- .yarn/
key: "$CI_BUILD_STAGE"
2016-11-21 10:58:37 +00:00
stages:
2018-02-13 23:13:12 +00:00
- mirror
- security
2016-11-21 10:58:37 +00:00
- test
- release
- trigger
- pages
2018-02-13 23:13:12 +00:00
mirror:
stage: mirror
script:
- npmci git mirror
tags:
- docker
security:
stage: security
script:
- npmci command yarn global add snyk
- npmci command yarn install --ignore-scripts
- npmci command snyk test
tags:
- docker
2016-11-21 10:58:37 +00:00
testLEGACY:
stage: test
script:
2018-02-13 23:13:12 +00:00
- npmci node install legacy
- npmci npm install
- npmci npm test
2017-04-19 18:06:21 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2016-11-21 10:58:37 +00:00
tags:
2018-02-13 23:13:12 +00:00
- docker
2016-11-21 10:58:37 +00:00
allow_failure: true
testLTS:
stage: test
script:
2018-02-13 23:13:12 +00:00
- npmci node install lts
- npmci npm install
- npmci npm test
2017-04-19 18:06:21 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2016-11-21 10:58:37 +00:00
tags:
2018-02-13 23:13:12 +00:00
- docker
2016-11-21 10:58:37 +00:00
testSTABLE:
stage: test
script:
2018-02-13 23:13:12 +00:00
- npmci node install stable
- npmci npm install
- npmci npm test
2017-04-19 18:06:21 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2016-11-21 10:58:37 +00:00
tags:
2018-02-13 23:13:12 +00:00
- docker
2016-11-21 10:58:37 +00:00
release:
stage: release
script:
2018-02-13 23:13:12 +00:00
- npmci npm prepare
- npmci npm publish
2016-11-21 10:58:37 +00:00
only:
2018-02-13 23:13:12 +00:00
- tags
2016-11-21 10:58:37 +00:00
tags:
2018-02-13 23:13:12 +00:00
- docker
2016-11-21 10:58:37 +00:00
trigger:
stage: trigger
script:
2018-02-13 23:13:12 +00:00
- npmci trigger
2016-11-21 10:58:37 +00:00
only:
2018-02-13 23:13:12 +00:00
- tags
2016-11-21 10:58:37 +00:00
tags:
2018-02-13 23:13:12 +00:00
- docker
2016-11-21 10:58:37 +00:00
pages:
2017-04-19 18:06:21 +00:00
image: hosttoday/ht-docker-node:npmci
2016-11-21 10:58:37 +00:00
stage: pages
script:
2017-04-19 18:06:21 +00:00
- npmci command yarn global add npmpage
2018-02-13 23:13:12 +00:00
- npmci command npmpage
2017-04-19 18:06:21 +00:00
tags:
- docker
2016-11-21 10:58:37 +00:00
only:
- tags
artifacts:
expire_in: 1 week
paths:
- public