Skip to content

Commit df8a07c

Browse files
Merge pull request #475 from h0x0er/fix-execSync
Addressed execSync issues
2 parents 91182cc + 30636fb commit df8a07c

8 files changed

+138
-86
lines changed

dist/post/index.js

+11-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/post/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/pre/index.js

+93-47
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/pre/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/arc-runner.test.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
import { isArcRunner, sendAllowedEndpoints } from "./arc-runner";
22

3-
43
it("should correctly recognize arc based runner", async () => {
54
process.env["GITHUB_ACTIONS_RUNNER_EXTRA_USER_AGENT"] =
65
"actions-runner-controller/2.0.1";
76

8-
let isArc: boolean = await isArcRunner();
7+
let isArc: boolean = await isArcRunner();
98
expect(isArc).toBe(true);
10-
119
});
1210

11+
it("should write endpoint files", () => {
12+
process.env["isTest"] = "1";
1313

14-
it("should write endpoint files", ()=>{
15-
process.env["isTest"] = "1"
16-
17-
let allowed_endpoints = ["github.com:443", "*.google.com:443", "youtube.com"].join(" ");
14+
let allowed_endpoints = [
15+
"github.com:443",
16+
"*.google.com:443",
17+
"youtube.com",
18+
].join(" ");
1819
sendAllowedEndpoints(allowed_endpoints);
19-
20-
})
20+
});

0 commit comments

Comments
 (0)