tsbuild/.gitlab-ci.yml

122 lines
1.9 KiB
YAML
Raw Normal View History

2019-08-26 14:28:03 +00:00
# gitzone ci_default
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
variables:
GIT_STRATEGY: clone
2018-07-25 18:56:42 +00:00
cache:
paths:
- .npmci_cache/
key: "$CI_BUILD_STAGE"
stages:
- security
- test
- release
- metadata
# ====================
# security stage
# ====================
mirror:
stage: security
script:
- npmci git mirror
tags:
- docker
- notpriv
snyk:
stage: security
script:
- npmci npm prepare
2018-07-25 18:56:42 +00:00
- npmci command npm install -g snyk
- npmci command npm install --ignore-scripts
- npmci command snyk test
tags:
- docker
- notpriv
# ====================
# test stage
# ====================
2019-08-26 14:28:03 +00:00
testStable:
2018-07-25 18:56:42 +00:00
stage: test
script:
- npmci npm prepare
2019-08-26 14:28:03 +00:00
- npmci node install stable
2018-07-25 18:56:42 +00:00
- npmci npm install
- npmci npm test
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
2019-08-26 14:28:03 +00:00
- priv
testBuild:
2018-07-25 18:56:42 +00:00
stage: test
script:
- npmci npm prepare
2019-08-26 14:28:03 +00:00
- npmci node install lts
2018-07-25 18:56:42 +00:00
- npmci npm install
2019-08-26 14:28:03 +00:00
- npmci command npm run build
2018-07-25 18:56:42 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
- notpriv
release:
stage: release
script:
2019-08-26 14:28:03 +00:00
- npmci node install lts
2018-07-25 18:56:42 +00:00
- npmci npm publish
only:
- tags
tags:
- docker
- notpriv
# ====================
# metadata stage
# ====================
codequality:
stage: metadata
allow_failure: true
script:
2019-08-26 14:28:03 +00:00
- npmci command npm install -g tslint typescript
- npmci npm install
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
2018-07-25 18:56:42 +00:00
tags:
- docker
- priv
trigger:
stage: metadata
script:
- npmci trigger
only:
- tags
tags:
- docker
- notpriv
pages:
2019-08-26 14:28:03 +00:00
image: hosttoday/ht-docker-dbase:npmci
services:
- docker:18-dind
2018-07-25 18:56:42 +00:00
stage: metadata
script:
2019-08-26 14:28:03 +00:00
- npmci command npm install -g @gitzone/tsdoc
- npmci npm prepare
2018-07-25 18:56:42 +00:00
- npmci npm install
2019-08-26 14:28:03 +00:00
- npmci command tsdoc
2018-07-25 18:56:42 +00:00
tags:
- docker
- notpriv
only:
- tags
artifacts:
expire_in: 1 week
paths:
- public
allow_failure: true