mirror of
https://github.com/github/codeql-action.git
synced 2025-12-24 08:10:06 +08:00
17 lines
785 B
JavaScript
Generated
17 lines
785 B
JavaScript
Generated
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
// exported only for testing purposes
|
|
exports.namedMatchersForTesting = {
|
|
/*
|
|
In due course it may be possible to remove the regex, if/when javascript also exits with code 32.
|
|
*/
|
|
noSourceCodeFound: [
|
|
32,
|
|
new RegExp("No JavaScript or TypeScript code found\\."),
|
|
"No code found during the build. Please see:\n" +
|
|
"https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning#no-code-found-during-the-build"
|
|
],
|
|
};
|
|
// we collapse the matches into an array for use in execErrorCatcher
|
|
exports.errorMatchers = Object.values(exports.namedMatchersForTesting);
|
|
//# sourceMappingURL=error-matcher.js.map
|