Update dependency Soenneker.Blazor.Utils.InteropEventListener to 4.0.3969 #6648
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: build-and-test | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| env: | |
| PipelineEnvironment: true | |
| NUGET_XMLDOC_MODE: skip | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Restore | |
| run: dotnet restore Soenneker.Blazor.FilePond.slnx --verbosity minimal | |
| - name: Build | |
| run: dotnet build Soenneker.Blazor.FilePond.slnx --configuration Release --no-restore --verbosity minimal | |
| - name: Test | |
| run: dotnet test --project test/Soenneker.Blazor.FilePond.Tests/Soenneker.Blazor.FilePond.Tests.csproj --configuration Release --no-build --no-restore --verbosity minimal | |
| - name: Pack | |
| run: dotnet pack src/Soenneker.Blazor.FilePond/Soenneker.Blazor.FilePond.csproj --configuration Release --no-build --no-restore --output . --verbosity minimal |