Skip to content

Commit e70214d

Browse files
Update test-install.yml
1 parent 915bc9e commit e70214d

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

.github/workflows/test-install.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
name: Build
33

44
on:
5+
workflow_dispatch:
6+
57
push:
68
paths-ignore:
79
- 'documentation/**'
@@ -12,17 +14,27 @@ on:
1214
paths-ignore:
1315
- 'documentation/**'
1416
- 'design/**'
15-
17+
1618
jobs:
17-
run_dotnet_test:
18-
name: run dotnet test
19+
test_puppeteer_pdf_ubuntu_latest:
20+
name: run puppeteer pdf test on ubuntu latest
1921
runs-on: ubuntu-latest
2022
steps:
2123
- uses: actions/checkout@v4
2224
- name: Setup dotnet
2325
uses: actions/setup-dotnet@v4
2426
- name: exec dotnet test
25-
run: cd /home/runner/work/firewall-orchestrator/firewall-orchestrator/roles/tests-unit/files/FWO.Test && dotnet restore && dotnet build && dotnet test
27+
run: cd /home/runner/work/firewall-orchestrator/firewall-orchestrator/roles/tests-unit/files/FWO.Test && dotnet restore && dotnet build && dotnet test --filter "Name=HtmlToPdfTest"
28+
29+
test_puppeteer_pdf_windows:
30+
name: run puppeteer pdf test on windows latest
31+
runs-on: windows-latest
32+
steps:
33+
- uses: actions/checkout@v4
34+
- name: Setup dotnet
35+
uses: actions/setup-dotnet@v4
36+
- name: exec dotnet test
37+
run: cd /home/runner/work/firewall-orchestrator/firewall-orchestrator/roles/tests-unit/files/FWO.Test && dotnet restore && dotnet build && dotnet test --filter "Name=HtmlToPdfTest"
2638

2739
test_ubuntu_latest:
2840
name: test build on ubuntu latest

0 commit comments

Comments
 (0)