smartgit/.gitlab-ci.yml

106 lines
1.6 KiB
YAML
Raw Normal View History

2019-06-18 13:17:50 +00:00
# gitzone ci_default
2019-06-19 12:00:44 +00:00
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
2019-06-18 13:17:50 +00:00
cache:
paths:
- .npmci_cache/
key: "$CI_BUILD_STAGE"
2016-06-12 14:50:29 +00:00
stages:
2019-06-18 13:17:50 +00:00
- security
2016-06-12 14:50:29 +00:00
- test
- release
2019-06-18 13:17:50 +00:00
- metadata
2016-06-12 14:50:29 +00:00
2019-06-18 13:17:50 +00:00
# ====================
# security stage
# ====================
mirror:
stage: security
script:
- npmci git mirror
tags:
- docker
- notpriv
2016-06-25 18:48:41 +00:00
2019-06-18 13:17:50 +00:00
snyk:
stage: security
2016-06-12 14:50:29 +00:00
script:
2019-06-18 13:17:50 +00:00
- npmci npm prepare
- npmci command npm install -g snyk
- npmci command npm install --ignore-scripts
- npmci command snyk test
2016-06-12 14:50:29 +00:00
tags:
2019-06-18 13:17:50 +00:00
- docker
- notpriv
# ====================
# test stage
# ====================
2016-06-12 14:50:29 +00:00
testLTS:
stage: test
script:
2019-06-18 13:17:50 +00:00
- npmci npm prepare
- npmci node install lts
- npmci npm install
- npmci npm test
coverage: /\d+.?\d+?\%\s*coverage/
2016-06-12 14:50:29 +00:00
tags:
2019-06-18 13:17:50 +00:00
- docker
- notpriv
2016-06-12 14:50:29 +00:00
release:
stage: release
script:
2019-06-19 12:00:44 +00:00
- npmci node install lts
2019-06-18 13:17:50 +00:00
- npmci npm publish
2016-06-12 14:50:29 +00:00
only:
2019-06-18 13:17:50 +00:00
- tags
2016-06-12 14:50:29 +00:00
tags:
2019-06-18 13:17:50 +00:00
- docker
- notpriv
# ====================
# metadata stage
# ====================
codequality:
stage: metadata
allow_failure: true
script:
- npmci command npm install -g tslint typescript
- npmci npm install
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
tags:
- docker
- priv
2016-06-12 14:50:29 +00:00
trigger:
2019-06-18 13:17:50 +00:00
stage: metadata
2016-06-12 14:50:29 +00:00
script:
2019-06-18 13:17:50 +00:00
- npmci trigger
2016-06-12 14:50:29 +00:00
only:
2019-06-18 13:17:50 +00:00
- tags
tags:
- docker
- notpriv
pages:
image: hosttoday/ht-docker-node:npmci
stage: metadata
script:
- npmci command npm install -g @gitzone/tsdoc
- npmci npm prepare
- npmci npm install
- npmci command tsdoc
2016-06-12 14:50:29 +00:00
tags:
- docker
2019-06-18 13:17:50 +00:00
- notpriv
only:
- tags
artifacts:
expire_in: 1 week
paths:
- public
allow_failure: true