Skip to content

Fix for JavaScript module path to handle app not being hosted at the … #15

Fix for JavaScript module path to handle app not being hosted at the …

Fix for JavaScript module path to handle app not being hosted at the … #15

Workflow file for this run

name: Blazor.BroadcastChannel - CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
integration:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup .NET 6.0 SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build