Skip to content

Bump Microsoft.AspNetCore.Components.WebAssembly.DevServer from 6.0.26 to 8.0.2 in /src/BlazorWasmNet6 #22

Bump Microsoft.AspNetCore.Components.WebAssembly.DevServer from 6.0.26 to 8.0.2 in /src/BlazorWasmNet6

Bump Microsoft.AspNetCore.Components.WebAssembly.DevServer from 6.0.26 to 8.0.2 in /src/BlazorWasmNet6 #22

Workflow file for this run

name: Build & Test PR
on:
pull_request:
branches: [ main ]
env:
PROJECT_NAME: PinguApps.Blazor.QRCode
DOTNET_VERSION: '8.0'
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup DotNet
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Restore Packages
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore src/$PROJECT_NAME/$PROJECT_NAME.csproj
- name: Test
run: dotnet test -c Release --no-restore --verbosity normal tests/$PROJECT_NAME.Tests/