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 d29728b commit e18fe9dCopy full SHA for e18fe9d
roles/tests-unit/files/FWO.Test/HtmlToPdfTest.cs
@@ -24,10 +24,7 @@ public async Task GeneratePdf()
24
25
string? isGitHubActions = Environment.GetEnvironmentVariable("RUNNING_ON_GITHUB");
26
27
- Console.WriteLine(isGitHubActions);
28
- Debug.WriteLine(isGitHubActions);
29
-
30
- if(isGitHubActions == "1")
+ if(!string.IsNullOrEmpty(isGitHubActions))
31
{
32
return;
33
}
0 commit comments