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"
stages:
- mirror
- security
- test
- release
@ -15,13 +14,13 @@ stages:
- pages
mirror:
stage: mirror
stage: security
script:
- npmci git mirror
tags:
- docker
security:
snyk:
stage: security
script:
- npmci command yarn global add snyk

View File

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