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.
1 parent e301c2a commit 020e812Copy full SHA for 020e812
roles/tests-unit/files/FWO.Test/HtmlToPdfTest.cs
@@ -24,9 +24,9 @@ public async Task GeneratePdf()
24
bool isValidHtml = ReportBase.IsValidHTML(Html);
25
ClassicAssert.IsTrue(isValidHtml);
26
27
- string? isGitHubActions = Environment.GetEnvironmentVariable("RUNNING_ON_GITHUB");
+ string? isGitHubActions = Environment.GetEnvironmentVariable("RUNNING_ON_GITHUB_ACTIONS");
28
29
- if (string.IsNullOrEmpty(isGitHubActions))
+ if (!string.IsNullOrEmpty(isGitHubActions))
30
{
31
return;
32
}
0 commit comments