mirror of
https://github.com/github/codeql-action.git
synced 2026-05-08 14:50:21 +00:00
20 lines
687 B
TypeScript
20 lines
687 B
TypeScript
import path from "path";
|
|
|
|
/** The oldest supported major version of the CodeQL Action. */
|
|
export const OLDEST_SUPPORTED_MAJOR_VERSION = 3;
|
|
|
|
/** The `pr-checks` directory. */
|
|
export const PR_CHECKS_DIR = __dirname;
|
|
|
|
/** The path of the file configuring which checks shouldn't be required. */
|
|
export const PR_CHECK_EXCLUDED_FILE = path.join(PR_CHECKS_DIR, "excluded.yml");
|
|
|
|
/** The path to the esbuild metadata file. */
|
|
export const BUNDLE_METADATA_FILE = path.join(PR_CHECKS_DIR, "..", "meta.json");
|
|
|
|
/** The path of the baseline esbuild metadata file, once extracted from a workflow artifact. */
|
|
export const BASELINE_BUNDLE_METADATA_FILE = path.join(
|
|
PR_CHECKS_DIR,
|
|
"meta.json",
|
|
);
|