Skip to content

add ulong constructor and tests to ShortChannelId; (#32) #6

add ulong constructor and tests to ShortChannelId; (#32)

add ulong constructor and tests to ShortChannelId; (#32) #6

Workflow file for this run

# 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:
push:
branches: [ "*" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-wasm-push:
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