Compare commits

...

8 Commits

Author SHA1 Message Date
373a838a6a 4.0.9 2022-10-11 14:08:00 +02:00
960e3f4675 fix(core): update 2022-10-11 14:07:59 +02:00
09bf676b58 4.0.8 2022-10-11 13:59:40 +02:00
76ba8e2ab9 fix(core): update 2022-10-11 13:59:39 +02:00
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
5 changed files with 6 additions and 7 deletions

View File

@@ -13,7 +13,7 @@ stages:
- metadata
before_script:
- npm install -g @shipzone/npmci
- pnpm install -g @shipzone/npmci pnpm
# ====================
# security stage

4
package-lock.json generated
View File

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

View File

@@ -1,6 +1,6 @@
{
"name": "@shipzone/npmci",
"version": "4.0.5",
"version": "4.0.9",
"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.9',
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();