Skip to content

Add handoff docs: puppeteer-sharp integration and blog post material #36

Add handoff docs: puppeteer-sharp integration and blog post material

Add handoff docs: puppeteer-sharp integration and blog post material #36

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
10.0.x
- name: Restore
run: dotnet restore
- name: Check formatting
run: dotnet format --verify-no-changes
- name: Build
run: dotnet build --no-restore -c Release
- name: Test
run: dotnet test --no-build -c Release