fix(core): update

This commit is contained in:
Philipp Kunz 2022-10-11 13:58:48 +02:00
parent d2871d601a
commit ba5e69041f
2 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@shipzone/npmci', name: '@shipzone/npmci',
version: '4.0.5', version: '4.0.6',
description: 'node and docker in gitlab ci on steroids' description: 'node and docker in gitlab ci on steroids'
} }

View File

@ -59,7 +59,7 @@ export class NpmciNodeJsManager {
logger.log('warn', 'Nvm not in path so staying at installed node version!'); logger.log('warn', 'Nvm not in path so staying at installed node version!');
} }
logger.log('info', 'now installing latest npm version'); logger.log('info', 'now installing latest npm version');
await bash('npm install -g npm && pnpm install -g pnpm'); await bash('npm install -g npm');
await bash('node -v'); await bash('node -v');
await bash('npm -v'); await bash('npm -v');
await bash('pnpm -v'); await bash('pnpm -v');