gotzone format

This commit is contained in:
Philipp Kunz 2018-03-01 22:50:34 +01:00
parent 305d1b9a62
commit f2e44a2b18
2 changed files with 3 additions and 4 deletions

View File

@ -7,7 +7,6 @@ cache:
key: "$CI_BUILD_STAGE" key: "$CI_BUILD_STAGE"
stages: stages:
- mirror
- security - security
- test - test
- release - release
@ -15,13 +14,13 @@ stages:
- pages - pages
mirror: mirror:
stage: mirror stage: security
script: script:
- npmci git mirror - npmci git mirror
tags: tags:
- docker - docker
security: snyk:
stage: security stage: security
script: script:
- npmci command yarn global add snyk - npmci command yarn global add snyk

View File

@ -13,7 +13,7 @@ export interface ILogContext {
export interface ILogPackage { export interface ILogPackage {
logContext: ILogContext; logContext: ILogContext;
logLevel: TLogLevel logLevel: TLogLevel;
message: string; message: string;
} }