Skip to content

Commit

Permalink
Fix deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
IEvangelist committed Jan 11, 2023
1 parent b56a6b4 commit b22026a
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/publish-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,20 @@ jobs:
dotnet-version: 7.0.x
- name: Test
run: dotnet test --filter "Category!=EndToEnd"


- name: Build end-to-end tests
run: |
dotnet build ./tests/Blazor.ExampleConsumer.EndToEndTests/Blazor.ExampleConsumer.EndToEndTests.csproj
- name: Install Playwright dependencies
run: pwsh tests/Blazor.ExampleConsumer.EndToEndTests/bin/Release/net7.0/playwright.ps1 install --with-deps
run: |
pwsh ./tests/Blazor.ExampleConsumer.EndToEndTests/bin/Debug/net7.0/playwright.ps1 install --with-deps
- name: End-to-end tests
- name: Run end-to-end tests
run: |
dotnet test ./tests/Blazor.ExampleConsumer.EndToEndTests/Blazor.ExampleConsumer.EndToEndTests.csproj --verbosity normal
publish:
publish:
needs: test
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit b22026a

Please sign in to comment.