Fix Invoice.TaggedFields' Collection item update behavior #35
This file contains 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
# This workflow will build a .NET project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
name: NLightning.Wasm .NET Build & Tests (Push) | |
on: | |
pull_request: | |
branches: [ "main" ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-wasm-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Build | |
run: dotnet build -c Debug.Wasm | |
working-directory: test/BlazorTests/NLightning.Blazor.Tests | |
- name: Install Dependencies | |
shell: pwsh | |
run: bin/Debug.Wasm/net8.0/playwright.ps1 install chromium | |
working-directory: test/BlazorTests/NLightning.Blazor.Tests | |
- name: Test | |
run: dotnet test -c Debug.Wasm | |
working-directory: test/BlazorTests/NLightning.Blazor.Tests |