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 b2f48be commit efd64d1Copy full SHA for efd64d1
.github/workflows/test-install.yml
@@ -13,6 +13,9 @@ on:
13
paths-ignore:
14
- 'documentation/**'
15
- 'design/**'
16
+
17
+env:
18
+ RUNNING_ON_GITHUB_ACTIONS: true
19
20
jobs:
21
test_install:
roles/tests-unit/files/FWO.Test/HtmlToPdfTest.cs
@@ -26,6 +26,8 @@ public async Task GeneratePdf()
26
27
string? isGitHubActions = Environment.GetEnvironmentVariable("RUNNING_ON_GITHUB_ACTIONS");
28
29
+ Log.WriteInfo("Test Log", $"Running in github actions? {isGitHubActions}");
30
31
if (!string.IsNullOrEmpty(isGitHubActions))
32
{
33
return;
0 commit comments