mirror of
https://github.com/DavidAnson/markdownlint-cli2-action.git
synced 2024-11-21 13:51:28 +01:00
73 lines
1.9 KiB
JavaScript
73 lines
1.9 KiB
JavaScript
// @ts-check
|
|
|
|
"use strict";
|
|
|
|
const core = require("@actions/core");
|
|
const { "main": markdownlintCli2 } = require("markdownlint-cli2");
|
|
|
|
const logMessage = core.info;
|
|
const outputFormatter = (options) => {
|
|
const { results } = options;
|
|
for (const lintError of results) {
|
|
const {
|
|
errorContext,
|
|
errorDetail,
|
|
errorRange,
|
|
fileName,
|
|
lineNumber,
|
|
ruleDescription,
|
|
ruleInformation,
|
|
ruleNames
|
|
} = lintError;
|
|
const line = `:${lineNumber}`;
|
|
const column = errorRange ? `:${errorRange[0]}` : "";
|
|
const name = ruleNames.join("/");
|
|
const detail = errorDetail ? ` [${errorDetail}]` : "";
|
|
const context = errorContext ? ` [Context: "${errorContext}"]` : "";
|
|
const information = ruleInformation ? ` ${ruleInformation}` : "";
|
|
const message =
|
|
`${fileName}${line}${column} ${name} ${ruleDescription}${detail}${context}${information}`;
|
|
const annotation = {
|
|
"title": ruleDescription,
|
|
"file": fileName,
|
|
"startLine": lineNumber,
|
|
"endLine": lineNumber
|
|
};
|
|
if (errorRange) {
|
|
const [
|
|
errorColumn,
|
|
errorLength
|
|
] = errorRange;
|
|
annotation.startColumn = errorColumn;
|
|
annotation.endColumn = errorColumn + errorLength - 1;
|
|
}
|
|
core.error(message, annotation);
|
|
}
|
|
};
|
|
|
|
const separator = core.getInput("separator") || "\n";
|
|
const argv =
|
|
core.getInput("globs").
|
|
split(separator).
|
|
filter(String);
|
|
|
|
const config = core.getInput("config");
|
|
if (config) {
|
|
argv.push("--config", config);
|
|
}
|
|
const fix = Boolean(core.getInput("fix"));
|
|
if (fix) {
|
|
argv.push("--fix");
|
|
}
|
|
|
|
const parameters = {
|
|
argv,
|
|
logMessage,
|
|
"optionsOverride": {
|
|
"outputFormatters": [ [ outputFormatter ] ]
|
|
}
|
|
};
|
|
markdownlintCli2(parameters).then(
|
|
(code) => code && core.setFailed(`Failed with exit code: ${code}`),
|
|
(error) => core.setFailed(`Failed due to error: ${error}`)
|
|
);
|