All files / lib analyze-commits.js

100% Statements 30/30
92.85% Branches 13/14
100% Functions 3/3
100% Lines 29/29

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69            1x 1x   1x 9x   9x 1x 1x     8x   1x     8x     8x 1x       8x 1x     8x   8x 1x           8x   8x       8x   8x 8x     8x   8x   8x 5x   3x 3x   3x      
import lint from "@commitlint/lint";
import load from "@commitlint/load";
import format from "@commitlint/format";
import isEmpty from "lodash.isempty";
import debugFactory from "debug";
 
const packageName = "semantic-release-commits-lint";
const debug = debugFactory(packageName);
 
export const analyzeCommits = async (pluginConfig, context) => {
    const {commits, logger, options} = context;
 
    if (isEmpty(commits)) {
        logger.warn("You don`t have commits. Skip plugin.");
        return;
    }
 
    if (options.debug) {
        // Set enable
        debugFactory.enable(packageName);
    }
 
    const {commitlintFile, commitlintConfig} = pluginConfig;
 
    let loadOptions;
    if (commitlintFile) {
        loadOptions = {file: commitlintFile};
    }
 
    let seed;
    if (commitlintConfig) {
        seed = commitlintConfig;
    }
 
    const {parserPreset, rules} = await load(seed, loadOptions);
 
    if (isEmpty(rules)) {
        logger.warn(
            "Rules`s commitlint configuration is empty.",
            "See the https://github.com/BondarenkoAlex/semantic-release-commits-lint?tab=readme-ov-file#configuration for more details.",
        );
    }
 
    debug("Use rules: %0", rules);
 
    const parserOptions = parserPreset
        ? {parserOpts: parserPreset.parserOpts}
        : {};
 
    debug("Use parserOpts: %0", parserOptions);
 
    const resultLintPromises = commits.map(({message}) =>
        lint(message, rules, parserOptions),
    );
 
    const reports = await Promise.all(resultLintPromises);
 
    const valid = reports.every((report) => report.valid);
 
    if (valid) {
        logger.success("Commits validated successfully!");
    } else {
        logger.error(format({results: reports}));
        logger.error("Commits validated failed!");
 
        throw new Error();
    }
};