mirror of
https://github.com/github/codeql-action.git
synced 2026-05-17 08:40:16 +00:00
Add remaining new entry points
This commit is contained in:
@@ -66,7 +66,6 @@ const context = await esbuild.context({
|
||||
// Include upload-lib.ts as an entry point for use in testing environments.
|
||||
entryPoints: globSync([
|
||||
`${SRC_DIR}/*-entry.ts`,
|
||||
// `${SRC_DIR}/*-action-post.ts`,
|
||||
"src/entry-points.ts",
|
||||
"src/upload-lib.ts",
|
||||
]),
|
||||
|
||||
Generated
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
|
||||
// src/analyze-entry.ts
|
||||
var import_entry_points = require("./entry-points");
|
||||
void (0, import_entry_points.runAnalyzeAction)();
|
||||
Generated
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
|
||||
// src/analyze-post-entry.ts
|
||||
var import_entry_points = require("./entry-points");
|
||||
void (0, import_entry_points.runAnalyzePostAction)();
|
||||
Generated
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
|
||||
// src/autobuild-entry.ts
|
||||
var import_entry_points = require("./entry-points");
|
||||
void (0, import_entry_points.runAutobuildAction)();
|
||||
Generated
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
|
||||
// src/init-post-entry.ts
|
||||
var import_entry_points = require("./entry-points");
|
||||
void (0, import_entry_points.runInitPostAction)();
|
||||
Generated
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
|
||||
// src/resolve-environment-entry.ts
|
||||
var import_entry_points = require("./entry-points");
|
||||
void (0, import_entry_points.runResolveEnvironmentAction)();
|
||||
Generated
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
|
||||
// src/setup-codeql-entry.ts
|
||||
var import_entry_points = require("./entry-points");
|
||||
void (0, import_entry_points.runSetupCodeqlAction)();
|
||||
Generated
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
|
||||
// src/start-proxy-entry.ts
|
||||
var import_entry_points = require("./entry-points");
|
||||
void (0, import_entry_points.runStartProxyAction)();
|
||||
Generated
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
|
||||
// src/start-proxy-post-entry.ts
|
||||
var import_entry_points = require("./entry-points");
|
||||
void (0, import_entry_points.runStartProxyPostAction)();
|
||||
Generated
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
|
||||
// src/upload-sarif-entry.ts
|
||||
var import_entry_points = require("./entry-points");
|
||||
void (0, import_entry_points.runUploadSarifAction)();
|
||||
Generated
+5
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
|
||||
// src/upload-sarif-post-entry.ts
|
||||
var import_entry_points = require("./entry-points");
|
||||
void (0, import_entry_points.runUploadSarifPostAction)();
|
||||
@@ -0,0 +1,3 @@
|
||||
import { runAnalyzeAction } from "./entry-points";
|
||||
|
||||
void runAnalyzeAction();
|
||||
@@ -0,0 +1,3 @@
|
||||
import { runAnalyzePostAction } from "./entry-points";
|
||||
|
||||
void runAnalyzePostAction();
|
||||
@@ -0,0 +1,3 @@
|
||||
import { runAutobuildAction } from "./entry-points";
|
||||
|
||||
void runAutobuildAction();
|
||||
@@ -0,0 +1,3 @@
|
||||
import { runInitPostAction } from "./entry-points";
|
||||
|
||||
void runInitPostAction();
|
||||
@@ -0,0 +1,3 @@
|
||||
import { runResolveEnvironmentAction } from "./entry-points";
|
||||
|
||||
void runResolveEnvironmentAction();
|
||||
@@ -0,0 +1,3 @@
|
||||
import { runSetupCodeqlAction } from "./entry-points";
|
||||
|
||||
void runSetupCodeqlAction();
|
||||
@@ -0,0 +1,3 @@
|
||||
import { runStartProxyAction } from "./entry-points";
|
||||
|
||||
void runStartProxyAction();
|
||||
@@ -0,0 +1,3 @@
|
||||
import { runStartProxyPostAction } from "./entry-points";
|
||||
|
||||
void runStartProxyPostAction();
|
||||
@@ -0,0 +1,3 @@
|
||||
import { runUploadSarifAction } from "./entry-points";
|
||||
|
||||
void runUploadSarifAction();
|
||||
@@ -0,0 +1,3 @@
|
||||
import { runUploadSarifPostAction } from "./entry-points";
|
||||
|
||||
void runUploadSarifPostAction();
|
||||
Reference in New Issue
Block a user