We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
analyze-action-env
1 parent 4264208 commit 8376af2Copy full SHA for 8376af2
src/analyze-action-env.test.ts
@@ -24,6 +24,9 @@ setupTests(test);
24
// but the first test would fail.
25
26
test("analyze action with RAM & threads from environment variables", async (t) => {
27
+ // This test frequently times out on Windows with the default timeout, so we bump
28
+ // it a bit to 20s.
29
+ t.timeout(1000 * 20);
30
await util.withTmpDir(async (tmpDir) => {
31
process.env["GITHUB_SERVER_URL"] = util.GITHUB_DOTCOM_URL;
32
process.env["GITHUB_REPOSITORY"] = "github/codeql-action-fake-repository";
0 commit comments