Bump the aspnetcore group with 1 update #149
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PR Build | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| buildAndTestPR: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 9.0.x | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Restore dependencies | |
| run: dotnet restore | |
| - name: Build | |
| run: dotnet build --no-restore --configuration Debug | |
| - name: Install Playwright Browsers | |
| shell: powershell | |
| run: .\test\Blazor.BrowserExtension.IntegrationTestRunner\bin\Debug\net9.0\playwright.ps1 install --with-deps | |
| - name: Run tests | |
| run: dotnet test --no-restore --no-build --configuration Debug |