Compare commits

...

4 Commits

Author SHA1 Message Date
aaaaca2d19 4.0.7 2022-10-11 13:59:16 +02:00
71b27eda17 fix(core): update 2022-10-11 13:59:15 +02:00
2d00882fd7 4.0.6 2022-10-11 13:58:48 +02:00
ba5e69041f fix(core): update 2022-10-11 13:58:48 +02:00
4 changed files with 5 additions and 6 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@shipzone/npmci",
"version": "4.0.5",
"version": "4.0.7",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@shipzone/npmci",
"version": "4.0.5",
"version": "4.0.7",
"license": "MIT",
"dependencies": {
"@apiglobal/typedrequest": "^2.0.10",

View File

@@ -1,6 +1,6 @@
{
"name": "@shipzone/npmci",
"version": "4.0.5",
"version": "4.0.7",
"private": false,
"description": "node and docker in gitlab ci on steroids",
"main": "dist_ts/index.js",

View File

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

View File

@@ -59,10 +59,9 @@ export class NpmciNodeJsManager {
logger.log('warn', 'Nvm not in path so staying at installed node 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('npm -v');
await bash('pnpm -v');
// lets look for further config
const config = await this.npmciRef.npmciConfig.getConfig();