Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,27 +37,27 @@ jobs:
- name: Dotnet Build
run: dotnet build -c Release

#- name: Run App
# working-directory: ${{ matrix.path }}
# run: Start-Process dotnet 'run','-c','Release','--launch-profile','https' -PassThru
# shell: pwsh

#- name: Install Playwright
# working-directory: tests/BlazorApplicationInsights.Tests/bin/Release/net9.0
# run: ./playwright.ps1 install --with-deps
# shell: pwsh

#- name: Run Tests
# working-directory: tests/BlazorApplicationInsights.Tests
# run: dotnet test -c Release --logger "trx;LogFileName=test-results.trx"

#- name: Test Report
# uses: dorny/test-reporter@v2
# if: success() || failure()
# with:
# name: KubeUI Tests
# path: tests/BlazorApplicationInsights.Tests/TestResults/test-results.trx
# reporter: dotnet-trx
- name: Run App
working-directory: ${{ matrix.path }}
run: Start-Process dotnet 'run','-c','Release','--launch-profile','https' -PassThru
shell: pwsh

- name: Install Playwright
working-directory: tests/BlazorApplicationInsights.Tests/bin/Release/net9.0
run: ./playwright.ps1 install --with-deps
shell: pwsh

- name: Run Tests
working-directory: tests/BlazorApplicationInsights.Tests
run: dotnet test -c Release --logger "trx;LogFileName=test-results.trx"

- name: Test Report
uses: dorny/test-reporter@v2
if: success() || failure()
with:
name: KubeUI Tests
path: tests/BlazorApplicationInsights.Tests/TestResults/test-results.trx
reporter: dotnet-trx

build:
name: Create Release
Expand Down
Loading