Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Mar 8, 2024
1 parent d0f4efc commit c70af1f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/script-runner/build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,15 @@ Task("Lint-Documentation")
settings.ThrowOnIssue = false;
RunMarkdownlintNodeJs(settings);

if (!FileExists(data.MarkdownlintCliLogFilePath))
{
Information("File {0} does not exist", data.MarkdownlintCliLogFilePath.FullPath);
}
else
{
Information("File {0} does exist", data.MarkdownlintCliLogFilePath.FullPath);
}

// Pass path to markdownlint-cli log file to Cake.Issues.Recipe
IssuesParameters.InputFiles.AddMarkdownlintCliLogFile(data.MarkdownlintCliLogFilePath);
});
Expand Down

0 comments on commit c70af1f

Please sign in to comment.