mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
44 lines
1.5 KiB
JavaScript
44 lines
1.5 KiB
JavaScript
import is from '@sindresorhus/is';
|
|
|
|
const { logger } = require('../logger');
|
|
const configMigration = require('./migration');
|
|
const configMassage = require('./massage');
|
|
const configValidation = require('./validation');
|
|
|
|
export { migrateAndValidate };
|
|
|
|
async function migrateAndValidate(config, input) {
|
|
logger.debug('migrateAndValidate()');
|
|
try {
|
|
const { isMigrated, migratedConfig } = configMigration.migrateConfig(input);
|
|
if (isMigrated) {
|
|
logger.info(
|
|
{ oldConfig: input, newConfig: migratedConfig },
|
|
'Config migration necessary'
|
|
);
|
|
} else {
|
|
logger.debug('No config migration necessary');
|
|
}
|
|
const massagedConfig = configMassage.massageConfig(migratedConfig);
|
|
logger.debug({ config: massagedConfig }, 'massaged config');
|
|
const { warnings, errors } = await configValidation.validateConfig(
|
|
massagedConfig
|
|
);
|
|
// istanbul ignore if
|
|
if (is.nonEmptyArray(warnings)) {
|
|
logger.info({ warnings }, 'Found renovate config warnings');
|
|
}
|
|
if (is.nonEmptyArray(errors)) {
|
|
logger.info({ errors }, 'Found renovate config errors');
|
|
}
|
|
massagedConfig.errors = (config.errors || []).concat(errors);
|
|
if (!config.repoIsOnboarded) {
|
|
// TODO #556 - enable warnings in real PRs
|
|
massagedConfig.warnings = (config.warnings || []).concat(warnings);
|
|
}
|
|
return massagedConfig;
|
|
} catch (err) /* istanbul ignore next */ {
|
|
logger.debug({ config: input }, 'migrateAndValidate error');
|
|
throw err;
|
|
}
|
|
}
|