Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/src/error-matcher.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

# Conflicts: # lib/codeql.js # lib/codeql.js.map # src/codeql.ts
24 lines (22 sloc)
1.06 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// defines properties to match against the result of executed commands, | |
// and a custom error to return when a match is found | |
export interface ErrorMatcher { | |
exitCode?: number; // exit code of the run process | |
outputRegex?: RegExp; // pattern to match against either stdout or stderr | |
message: string; // the error message that will be thrown for a matching process | |
} | |
// exported only for testing purposes | |
export const namedMatchersForTesting: { [key: string]: ErrorMatcher } = { | |
/* | |
In due course it may be possible to remove the regex, if/when javascript also exits with code 32. | |
*/ | |
noSourceCodeFound: { | |
exitCode: 32, | |
outputRegex: new RegExp("No JavaScript or TypeScript code found\\."), | |
message: | |
"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 | |
export const errorMatchers = Object.values(namedMatchersForTesting); |