Skip to content

Update to bit 9.12.0 (#86) #45

Update to bit 9.12.0 (#86)

Update to bit 9.12.0 (#86) #45

Workflow file for this run

name: Bit.TemplatePlayground CI
# https://bitplatform.dev/templates/dev-ops
on:
workflow_dispatch:
pull_request:
env:
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: true
jobs:
build_blazor_server:
name: build blazor
runs-on: ubuntu-24.04
steps:
- name: Checkout source code
uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
global-json-file: global.json
- uses: actions/setup-node@v4
with:
node-version: 23
- name: Workload restore
run: dotnet workload restore
- name: Build
run: dotnet build Bit.TemplatePlayground.slnx
- name: Install Playwright
run: pwsh src/Tests/bin/Debug/net9.0/playwright.ps1 install --with-deps
- name: Test
id: test
run: dotnet test src/Tests/Bit.TemplatePlayground.Tests.csproj --logger GitHubActions
- name: Upload Tests Artifact
uses: actions/upload-artifact@v4.4.1
if: ${{ failure() && steps.test.conclusion == 'failure' }}
with:
name: tests-artifact
path: ./src/Tests/TestResults
retention-days: 14