smartcsv/.gitlab-ci.yml

118 lines
1.8 KiB
YAML
Raw Normal View History

2019-07-08 14:57:45 +00:00
# gitzone ci_default
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
2018-05-10 17:47:14 +00:00
cache:
paths:
2018-06-10 12:29:09 +00:00
- .npmci_cache/
2018-05-10 17:47:14 +00:00
key: "$CI_BUILD_STAGE"
stages:
- security
- test
- release
- metadata
# ====================
# security stage
# ====================
2018-05-10 17:47:14 +00:00
mirror:
stage: security
script:
- npmci git mirror
tags:
- docker
- notpriv
snyk:
stage: security
script:
2018-10-14 21:28:38 +00:00
- npmci npm prepare
2018-06-10 12:29:09 +00:00
- npmci command npm install -g snyk
- npmci command npm install --ignore-scripts
2018-05-10 17:47:14 +00:00
- npmci command snyk test
tags:
- docker
- notpriv
# ====================
# test stage
# ====================
2018-05-10 17:47:14 +00:00
testLTS:
stage: test
script:
2018-10-14 21:28:38 +00:00
- npmci npm prepare
2018-05-10 17:47:14 +00:00
- npmci node install lts
- npmci npm install
- npmci npm test
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
- notpriv
2019-07-08 14:57:45 +00:00
testBuild:
2018-05-10 17:47:14 +00:00
stage: test
script:
2018-10-14 21:28:38 +00:00
- npmci npm prepare
2019-07-08 14:57:45 +00:00
- npmci node install lts
2018-05-10 17:47:14 +00:00
- npmci npm install
2019-07-08 14:57:45 +00:00
- npmci command npm run build
2018-05-10 17:47:14 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
- notpriv
release:
stage: release
script:
2019-07-08 14:57:45 +00:00
- npmci node install lts
2018-05-10 17:47:14 +00:00
- npmci npm publish
only:
- tags
tags:
- docker
- notpriv
# ====================
# metadata stage
# ====================
codequality:
stage: metadata
allow_failure: true
script:
2019-07-08 14:57:45 +00:00
- npmci command npm install -g tslint typescript
- npmci npm install
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
2018-05-10 17:47:14 +00:00
tags:
- docker
- priv
trigger:
stage: metadata
script:
- npmci trigger
only:
- tags
tags:
- docker
- notpriv
pages:
image: hosttoday/ht-docker-node:npmci
stage: metadata
script:
2019-05-23 15:28:21 +00:00
- npmci command npm install -g @gitzone/tsdoc
2018-10-14 21:28:38 +00:00
- npmci npm prepare
2018-08-18 20:05:26 +00:00
- npmci npm install
2019-05-23 15:28:21 +00:00
- npmci command tsdoc
2018-05-10 17:47:14 +00:00
tags:
- docker
- notpriv
only:
- tags
artifacts:
expire_in: 1 week
paths:
- public
2018-08-18 20:05:26 +00:00
allow_failure: true