Skip to content

Documentation dump tool (/docs/generated/ for LLMs and tools like Context7) #2451

Documentation dump tool (/docs/generated/ for LLMs and tools like Context7)

Documentation dump tool (/docs/generated/ for LLMs and tools like Context7) #2451

Workflow file for this run

name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c Release -p:TreatWarningsAsErrors=true
- name: Install Playwright browsers
run: pwsh Havit.Blazor.E2ETests/bin/Release/net10.0/playwright.ps1 install --with-deps
- name: Test
run: dotnet test --no-build -c Release --verbosity normal