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 020e812 commit 6bf146bCopy full SHA for 6bf146b
roles/tests-unit/files/FWO.Test/HtmlToPdfTest.cs
@@ -6,6 +6,7 @@
6
using PuppeteerSharp.BrowserData;
7
using FWO.Report;
8
using FWO.Report.Data;
9
+using System.Diagnostics;
10
11
namespace FWO.Test
12
{
@@ -26,6 +27,10 @@ public async Task GeneratePdf()
26
27
28
string? isGitHubActions = Environment.GetEnvironmentVariable("RUNNING_ON_GITHUB_ACTIONS");
29
30
+ Console.WriteLine(isGitHubActions);
31
+ Debug.WriteLine(isGitHubActions);
32
+ Log.WriteWarning("is github actions", isGitHubActions);
33
+
34
if (!string.IsNullOrEmpty(isGitHubActions))
35
36
return;
0 commit comments