Compare commits

...

4 Commits

Author SHA1 Message Date
d2871d601a 4.0.5 2022-10-11 13:40:26 +02:00
9c66d88dc0 fix(core): update 2022-10-11 13:40:25 +02:00
fb4c84e1de 4.0.4 2022-10-11 13:38:40 +02:00
57aca36f11 fix(core): update 2022-10-11 13:38:40 +02:00
5 changed files with 13 additions and 11 deletions

4
package-lock.json generated
View File

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

View File

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

View File

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

View File

@@ -44,11 +44,11 @@ export class NpmciNodeJsManager {
logger.log('info', `now installing node version ${versionArg}`); logger.log('info', `now installing node version ${versionArg}`);
let version: string; let version: string;
if (versionArg === 'stable') { if (versionArg === 'stable') {
version = '16'; version = '18';
} else if (versionArg === 'lts') { } else if (versionArg === 'lts') {
version = '14'; version = '16';
} else if (versionArg === 'legacy') { } else if (versionArg === 'legacy') {
version = '12'; version = '14';
} else { } else {
version = versionArg; version = versionArg;
} }
@@ -59,9 +59,10 @@ 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'); await bash('npm install -g npm && pnpm install -g pnpm');
await bash('node -v'); await bash('node -v');
await bash('npm -v'); await bash('npm -v');
await bash('pnpm -v');
// lets look for further config // lets look for further config
const config = await this.npmciRef.npmciConfig.getConfig(); const config = await this.npmciRef.npmciConfig.getConfig();

View File

@@ -151,6 +151,7 @@ export class NpmciNpmManager {
logger.log('info', `now preparing environment:`); logger.log('info', `now preparing environment:`);
this.prepare(); this.prepare();
await bash(`npm -v`); await bash(`npm -v`);
await bash(`pnpm -v`);
// -> build it // -> build it
await this.install(); await this.install();
@@ -172,16 +173,16 @@ export class NpmciNpmManager {
public async install(): Promise<void> { public async install(): Promise<void> {
logger.log('info', 'now installing dependencies:'); logger.log('info', 'now installing dependencies:');
await bash('npm ci'); await bash('pnpm install');
} }
public async build(): Promise<void> { public async build(): Promise<void> {
logger.log('info', 'now building the project:'); logger.log('info', 'now building the project:');
await bash('npm run build'); await bash('pnpm run build');
} }
public async test(): Promise<void> { public async test(): Promise<void> {
logger.log('info', 'now starting tests:'); logger.log('info', 'now starting tests:');
await bash('npm test'); await bash('pnpm test');
} }
} }