From a4f8bd3320bf4ddbbc4ed478875e6528f612130b Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Wed, 19 Jun 2019 14:00:24 +0200 Subject: [PATCH] fix(core): update --- .gitlab-ci.yml | 16 ++-------------- package.json | 2 +- ts/mod_docker/index.ts | 5 ++++- 3 files changed, 7 insertions(+), 16 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 63b309d..8d4acf4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ # gitzone ci_default -image: hosttoday/ht-docker-node:npmci +image: registry.gitlab.com/hosttoday/ht-docker-node:npmci cache: paths: @@ -49,23 +49,11 @@ testLTS: tags: - docker - notpriv - -testSTABLE: - stage: test - script: - - npmci npm prepare - - npmci node install stable - - npmci npm install - - npmci npm test - coverage: /\d+.?\d+?\%\s*coverage/ - tags: - - docker - - notpriv release: stage: release script: - - npmci node install stable + - npmci node install lts - npmci npm publish only: - tags diff --git a/package.json b/package.json index ceae275..ee6c6bc 100644 --- a/package.json +++ b/package.json @@ -63,4 +63,4 @@ "npmextra.json", "readme.md" ] -} +} \ No newline at end of file diff --git a/ts/mod_docker/index.ts b/ts/mod_docker/index.ts index 86c137c..6689e64 100644 --- a/ts/mod_docker/index.ts +++ b/ts/mod_docker/index.ts @@ -114,7 +114,10 @@ export const push = async argvArg => { dockerRegistryUrls.push(argvArg._[2]); } else { if (configObject.dockerRegistries.length === 0) { - logger.log('warn', `There are no docker registries listed in npmextra.json! This is strange!`); + logger.log( + 'warn', + `There are no docker registries listed in npmextra.json! This is strange!` + ); } dockerRegistryUrls = dockerRegistryUrls.concat(configObject.dockerRegistries); }