Skip to content
This repository was archived by the owner on May 12, 2026. It is now read-only.

Update blog post list page title #9

Update blog post list page title

Update blog post list page title #9

Workflow file for this run

name: .NET Build
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
workflow_dispatch:
jobs:
test:
name: Build & Test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Print .NET version and SDKs
shell: bash
run: |
dotnet --version
dotnet --list-sdks
- name: Restore Tools
shell: bash
run: dotnet workload install wasm-tools
- name: Build
run: dotnet build --configuration Debug --no-incremental