mirror of
https://github.com/actions/setup-node.git
synced 2024-11-10 12:28:24 +08:00
adds the ability to set ignore-scripts in npm config
This commit is contained in:
parent
e54c83ad43
commit
8d3d0041fe
|
@ -76,6 +76,10 @@ See [action.yml](action.yml)
|
||||||
# Set always-auth option in npmrc file.
|
# Set always-auth option in npmrc file.
|
||||||
# Default: ''
|
# Default: ''
|
||||||
always-auth: ''
|
always-auth: ''
|
||||||
|
|
||||||
|
# Set ignore-scripts in npmrc file to prevent pre and postinstall scripts from running as they are a potential security problem.
|
||||||
|
# Default: false
|
||||||
|
ignore-scripts: false
|
||||||
```
|
```
|
||||||
<!-- end usage -->
|
<!-- end usage -->
|
||||||
|
|
||||||
|
|
46
__tests__/ignore-scripts.test.ts
Normal file
46
__tests__/ignore-scripts.test.ts
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
import path from 'path';
|
||||||
|
import fs from 'fs';
|
||||||
|
import * as ignorescripts from '../src/ignore-scripts';
|
||||||
|
import {getNpmrcLocation} from '../src/util';
|
||||||
|
|
||||||
|
let rcFile: string;
|
||||||
|
|
||||||
|
describe('ignore-scripts tests', () => {
|
||||||
|
const runnerDir = path.join(__dirname, 'runner');
|
||||||
|
|
||||||
|
beforeEach(async () => {
|
||||||
|
rcFile = getNpmrcLocation();
|
||||||
|
}, 5000);
|
||||||
|
|
||||||
|
afterEach(async () => {
|
||||||
|
fs.unlinkSync(rcFile);
|
||||||
|
rcFile = getNpmrcLocation();
|
||||||
|
}, 10000);
|
||||||
|
|
||||||
|
it('sets the value to true according to input', async () => {
|
||||||
|
ignorescripts.ignoreScriptsInNpmConfig('true');
|
||||||
|
const rcContents = fs.readFileSync(rcFile).toString();
|
||||||
|
expect(rcContents).toMatch('\nignore-scripts=true\n');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('sets the value to false according to input', async () => {
|
||||||
|
ignorescripts.ignoreScriptsInNpmConfig('false');
|
||||||
|
const rcContents = fs.readFileSync(rcFile).toString();
|
||||||
|
expect(rcContents).toMatch('\nignore-scripts=false\n');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('defaults to false on empty input', async () => {
|
||||||
|
ignorescripts.ignoreScriptsInNpmConfig('');
|
||||||
|
const rcContents = fs.readFileSync(rcFile).toString();
|
||||||
|
expect(rcContents).toMatch('\nignore-scripts=false\n');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('preserves existing npmrc file contents', async () => {
|
||||||
|
fs.writeFileSync(getNpmrcLocation(), 'something\nwhatever\nstuff');
|
||||||
|
ignorescripts.ignoreScriptsInNpmConfig('true');
|
||||||
|
const rcContents = fs.readFileSync(rcFile).toString();
|
||||||
|
expect(rcContents).toMatch(
|
||||||
|
'something\nwhatever\nstuff\nignore-scripts=true\n'
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
|
@ -25,6 +25,9 @@ inputs:
|
||||||
description: 'Used to specify a package manager for caching in the default directory. Supported values: npm, yarn, pnpm.'
|
description: 'Used to specify a package manager for caching in the default directory. Supported values: npm, yarn, pnpm.'
|
||||||
cache-dependency-path:
|
cache-dependency-path:
|
||||||
description: 'Used to specify the path to a dependency file: package-lock.json, yarn.lock, etc. Supports wildcards or a list of file names for caching multiple dependencies.'
|
description: 'Used to specify the path to a dependency file: package-lock.json, yarn.lock, etc. Supports wildcards or a list of file names for caching multiple dependencies.'
|
||||||
|
ignore-scripts:
|
||||||
|
description: 'Set ignore-scripts in npmrc to prevent pre and postinstall scripts from running as they are a potential security problem.'
|
||||||
|
default: 'false'
|
||||||
# TODO: add input to control forcing to pull from cloud or dist.
|
# TODO: add input to control forcing to pull from cloud or dist.
|
||||||
# escape valve for someone having issues or needing the absolute latest which isn't cached yet
|
# escape valve for someone having issues or needing the absolute latest which isn't cached yet
|
||||||
outputs:
|
outputs:
|
||||||
|
|
8
dist/cache-save/index.js
vendored
8
dist/cache-save/index.js
vendored
|
@ -83333,7 +83333,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.unique = exports.printEnvDetailsAndSetOutput = exports.getNodeVersionFromFile = void 0;
|
exports.defaultIfEmpty = exports.getNpmrcLocation = exports.unique = exports.printEnvDetailsAndSetOutput = exports.getNodeVersionFromFile = void 0;
|
||||||
const core = __importStar(__nccwpck_require__(2186));
|
const core = __importStar(__nccwpck_require__(2186));
|
||||||
const exec = __importStar(__nccwpck_require__(1514));
|
const exec = __importStar(__nccwpck_require__(1514));
|
||||||
const fs_1 = __importDefault(__nccwpck_require__(7147));
|
const fs_1 = __importDefault(__nccwpck_require__(7147));
|
||||||
|
@ -83429,6 +83429,12 @@ const unique = () => {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
exports.unique = unique;
|
exports.unique = unique;
|
||||||
|
const getNpmrcLocation = () => {
|
||||||
|
return path_1.default.resolve(process.env['RUNNER_TEMP'] || process.cwd(), '.npmrc');
|
||||||
|
};
|
||||||
|
exports.getNpmrcLocation = getNpmrcLocation;
|
||||||
|
const defaultIfEmpty = (input, defaultValue) => input.length === 0 ? defaultValue : input;
|
||||||
|
exports.defaultIfEmpty = defaultIfEmpty;
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
34
dist/setup/index.js
vendored
34
dist/setup/index.js
vendored
|
@ -93605,6 +93605,29 @@ class CanaryBuild extends base_distribution_prerelease_1.default {
|
||||||
exports["default"] = CanaryBuild;
|
exports["default"] = CanaryBuild;
|
||||||
|
|
||||||
|
|
||||||
|
/***/ }),
|
||||||
|
|
||||||
|
/***/ 6572:
|
||||||
|
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
|
exports.ignoreScriptsInNpmConfig = void 0;
|
||||||
|
const fs_1 = __nccwpck_require__(7147);
|
||||||
|
const util_1 = __nccwpck_require__(2629);
|
||||||
|
const ignoreScriptsInNpmConfig = (ignore) => {
|
||||||
|
const nonEmptyInput = (0, util_1.defaultIfEmpty)(ignore, 'false');
|
||||||
|
const ignored = JSON.parse(nonEmptyInput);
|
||||||
|
appendToNpmrc(ignored);
|
||||||
|
};
|
||||||
|
exports.ignoreScriptsInNpmConfig = ignoreScriptsInNpmConfig;
|
||||||
|
const appendToNpmrc = (ignoreScripts) => {
|
||||||
|
const npmrc = (0, util_1.getNpmrcLocation)();
|
||||||
|
(0, fs_1.writeFileSync)(npmrc, `\nignore-scripts=${ignoreScripts}\n`, { flag: 'a' });
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 399:
|
/***/ 399:
|
||||||
|
@ -93658,6 +93681,7 @@ const cache_utils_1 = __nccwpck_require__(1678);
|
||||||
const installer_factory_1 = __nccwpck_require__(5617);
|
const installer_factory_1 = __nccwpck_require__(5617);
|
||||||
const util_1 = __nccwpck_require__(2629);
|
const util_1 = __nccwpck_require__(2629);
|
||||||
const constants_1 = __nccwpck_require__(9042);
|
const constants_1 = __nccwpck_require__(9042);
|
||||||
|
const ignore_scripts_1 = __nccwpck_require__(6572);
|
||||||
function run() {
|
function run() {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
try {
|
try {
|
||||||
|
@ -93697,6 +93721,8 @@ function run() {
|
||||||
if (registryUrl) {
|
if (registryUrl) {
|
||||||
auth.configAuthentication(registryUrl, alwaysAuth);
|
auth.configAuthentication(registryUrl, alwaysAuth);
|
||||||
}
|
}
|
||||||
|
const ignoreScripts = core.getInput('ignore-scripts');
|
||||||
|
(0, ignore_scripts_1.ignoreScriptsInNpmConfig)(ignoreScripts);
|
||||||
if (cache && (0, cache_utils_1.isCacheFeatureAvailable)()) {
|
if (cache && (0, cache_utils_1.isCacheFeatureAvailable)()) {
|
||||||
core.saveState(constants_1.State.CachePackageManager, cache);
|
core.saveState(constants_1.State.CachePackageManager, cache);
|
||||||
const cacheDependencyPath = core.getInput('cache-dependency-path');
|
const cacheDependencyPath = core.getInput('cache-dependency-path');
|
||||||
|
@ -93780,7 +93806,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.unique = exports.printEnvDetailsAndSetOutput = exports.getNodeVersionFromFile = void 0;
|
exports.defaultIfEmpty = exports.getNpmrcLocation = exports.unique = exports.printEnvDetailsAndSetOutput = exports.getNodeVersionFromFile = void 0;
|
||||||
const core = __importStar(__nccwpck_require__(2186));
|
const core = __importStar(__nccwpck_require__(2186));
|
||||||
const exec = __importStar(__nccwpck_require__(1514));
|
const exec = __importStar(__nccwpck_require__(1514));
|
||||||
const fs_1 = __importDefault(__nccwpck_require__(7147));
|
const fs_1 = __importDefault(__nccwpck_require__(7147));
|
||||||
|
@ -93876,6 +93902,12 @@ const unique = () => {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
exports.unique = unique;
|
exports.unique = unique;
|
||||||
|
const getNpmrcLocation = () => {
|
||||||
|
return path_1.default.resolve(process.env['RUNNER_TEMP'] || process.cwd(), '.npmrc');
|
||||||
|
};
|
||||||
|
exports.getNpmrcLocation = getNpmrcLocation;
|
||||||
|
const defaultIfEmpty = (input, defaultValue) => input.length === 0 ? defaultValue : input;
|
||||||
|
exports.defaultIfEmpty = defaultIfEmpty;
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
13
src/ignore-scripts.ts
Normal file
13
src/ignore-scripts.ts
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
import {writeFileSync} from 'fs';
|
||||||
|
import {defaultIfEmpty, getNpmrcLocation} from './util';
|
||||||
|
|
||||||
|
export const ignoreScriptsInNpmConfig = (ignore: string): void => {
|
||||||
|
const nonEmptyInput: string = defaultIfEmpty(ignore, 'false');
|
||||||
|
const ignored: boolean = JSON.parse(nonEmptyInput);
|
||||||
|
appendToNpmrc(ignored);
|
||||||
|
};
|
||||||
|
|
||||||
|
const appendToNpmrc = (ignoreScripts: boolean): void => {
|
||||||
|
const npmrc = getNpmrcLocation();
|
||||||
|
writeFileSync(npmrc, `\nignore-scripts=${ignoreScripts}\n`, {flag: 'a'});
|
||||||
|
};
|
10
src/main.ts
10
src/main.ts
|
@ -7,8 +7,13 @@ import * as path from 'path';
|
||||||
import {restoreCache} from './cache-restore';
|
import {restoreCache} from './cache-restore';
|
||||||
import {isCacheFeatureAvailable} from './cache-utils';
|
import {isCacheFeatureAvailable} from './cache-utils';
|
||||||
import {getNodejsDistribution} from './distributions/installer-factory';
|
import {getNodejsDistribution} from './distributions/installer-factory';
|
||||||
import {getNodeVersionFromFile, printEnvDetailsAndSetOutput} from './util';
|
import {
|
||||||
|
defaultIfEmpty,
|
||||||
|
getNodeVersionFromFile,
|
||||||
|
printEnvDetailsAndSetOutput
|
||||||
|
} from './util';
|
||||||
import {State} from './constants';
|
import {State} from './constants';
|
||||||
|
import {ignoreScriptsInNpmConfig} from './ignore-scripts';
|
||||||
|
|
||||||
export async function run() {
|
export async function run() {
|
||||||
try {
|
try {
|
||||||
|
@ -59,6 +64,9 @@ export async function run() {
|
||||||
auth.configAuthentication(registryUrl, alwaysAuth);
|
auth.configAuthentication(registryUrl, alwaysAuth);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const ignoreScripts: string = core.getInput('ignore-scripts');
|
||||||
|
ignoreScriptsInNpmConfig(ignoreScripts);
|
||||||
|
|
||||||
if (cache && isCacheFeatureAvailable()) {
|
if (cache && isCacheFeatureAvailable()) {
|
||||||
core.saveState(State.CachePackageManager, cache);
|
core.saveState(State.CachePackageManager, cache);
|
||||||
const cacheDependencyPath = core.getInput('cache-dependency-path');
|
const cacheDependencyPath = core.getInput('cache-dependency-path');
|
||||||
|
|
|
@ -105,3 +105,10 @@ export const unique = () => {
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const getNpmrcLocation: () => string = () => {
|
||||||
|
return path.resolve(process.env['RUNNER_TEMP'] || process.cwd(), '.npmrc');
|
||||||
|
};
|
||||||
|
|
||||||
|
export const defaultIfEmpty = (input: string, defaultValue: string): string =>
|
||||||
|
input.length === 0 ? defaultValue : input;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user