Skip to content

Commit e28f1c6

Browse files
Update test-install.yml
1 parent 0998fa9 commit e28f1c6

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

.github/workflows/test-install.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,23 @@ on:
1616
- 'design/**'
1717

1818
jobs:
19+
test_puppeteer_pdf_ubuntu_latest:
20+
name: run puppeteer pdf test on ubuntu latest
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v4
24+
- name: Setup dotnet
25+
uses: actions/setup-dotnet@v4
26+
- name: exec 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+
1929
test_ubuntu_latest:
2030
name: test build on ubuntu latest
2131
runs-on: ubuntu-latest
2232
steps:
2333
- name: Set environment variable
2434
run: echo "RUNNING_ON_GITHUB=1" >> $GITHUB_ENV
2535

26-
- name: Setup dotnet
27-
uses: actions/setup-dotnet@v4
28-
29-
- name: exec dotnet test
30-
run: cd /home/runner/work/firewall-orchestrator/firewall-orchestrator/roles/tests-unit/files/FWO.Test && dotnet restore && dotnet build && dotnet test --filter "Name=HtmlToPdfTest"
31-
env:
32-
RUNNING_ON_GITHUB_ACTIONS: ${{ env.RUNNING_ON_GITHUB }}
33-
3436
- uses: actions/checkout@v3
3537

3638
- name: do test install in case of merged pull request

0 commit comments

Comments
 (0)