update to latest standards

This commit is contained in:
2017-04-20 21:57:44 +02:00
parent de57d45947
commit c29a261cb6
4 changed files with 8 additions and 8 deletions

View File

@ -14,7 +14,7 @@ export let run = () => {
if (configArg.exitCode === 0) {
plugins.beautylog.success('container ended all right!')
} else {
plugins.beautylog.error('container ended with error!')
plugins.beautylog.error(`container ended with error! Exit Code is ${configArg.exitCode}`)
process.exit(1)
}
})

View File

@ -27,8 +27,8 @@ let buildConfig = async (qenvKeyValueObjectArrayArg: IKeyValueObject[]) => {
let config = npmextra.dataFor<IConfig>(
'npmdocker',
{
baseImage: 'hosttoday/ht-docker-node:npmts',
command: 'npm test',
baseImage: 'hosttoday/ht-docker-node:npmci',
command: 'npmci test stable',
dockerSock: false,
keyValueObjectArray: qenvKeyValueObjectArrayArg
}