update ci

This commit is contained in:
Philipp Kunz 2018-05-03 20:07:49 +02:00
parent 734a21c925
commit 7722187ea5
2 changed files with 30 additions and 3 deletions

View File

@ -19,6 +19,7 @@ mirror:
- npmci git mirror - npmci git mirror
tags: tags:
- docker - docker
- notpriv
snyk: snyk:
stage: security stage: security
@ -28,6 +29,26 @@ snyk:
- npmci command snyk test - npmci command snyk test
tags: tags:
- docker - docker
- notpriv
codequality:
stage: security
image: docker:stable
allow_failure: true
services:
- docker:stable-dind
script:
- export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/')
- docker run
--env SOURCE_CODE="$PWD"
--volume "$PWD":/code
--volume /var/run/docker.sock:/var/run/docker.sock
"registry.gitlab.com/gitlab-org/security-products/codequality:$SP_VERSION" /code
artifacts:
paths: [codeclimate.json]
tags:
- docker
- priv
testLEGACY: testLEGACY:
stage: test stage: test
@ -38,6 +59,7 @@ testLEGACY:
coverage: /\d+.?\d+?\%\s*coverage/ coverage: /\d+.?\d+?\%\s*coverage/
tags: tags:
- docker - docker
- notpriv
allow_failure: true allow_failure: true
testLTS: testLTS:
@ -49,6 +71,7 @@ testLTS:
coverage: /\d+.?\d+?\%\s*coverage/ coverage: /\d+.?\d+?\%\s*coverage/
tags: tags:
- docker - docker
- notpriv
testSTABLE: testSTABLE:
stage: test stage: test
@ -59,6 +82,7 @@ testSTABLE:
coverage: /\d+.?\d+?\%\s*coverage/ coverage: /\d+.?\d+?\%\s*coverage/
tags: tags:
- docker - docker
- notpriv
release: release:
stage: release stage: release
@ -70,6 +94,7 @@ release:
- tags - tags
tags: tags:
- docker - docker
- notpriv
trigger: trigger:
stage: trigger stage: trigger
@ -79,6 +104,7 @@ trigger:
- tags - tags
tags: tags:
- docker - docker
- notpriv
pages: pages:
image: hosttoday/ht-docker-node:npmci image: hosttoday/ht-docker-node:npmci
@ -88,6 +114,7 @@ pages:
- npmci command npmpage - npmci command npmpage
tags: tags:
- docker - docker
- notpriv
only: only:
- tags - tags
artifacts: artifacts:

View File

@ -69,12 +69,12 @@ let publish = async () => {
// -> build it // -> build it
await bash(`yarn install`); await bash(`yarn install`);
await bash(`yarn run build`); await bash(`yarn run build`);
await bash (`rm -r node_modules`) await bash(`rm -r node_modules`);
// -> publish it // -> publish it
plugins.beautylog.log(`now invking npm to publish the package!`) plugins.beautylog.log(`now invking npm to publish the package!`);
await bash(`npm publish ${npmAccessCliString}`); await bash(`npm publish ${npmAccessCliString}`);
plugins.beautylog.success(`Package was successfully published!`) plugins.beautylog.success(`Package was successfully published!`);
}; };
let install = async (): Promise<void> => { let install = async (): Promise<void> => {