feat: update to bit 9.2.1 #63 (#64) #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bit.TemplatePlayground CI | |
# https://bitplatform.dev/templates/dev-ops | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "develop" ] | |
jobs: | |
build_blazor_server: | |
name: build blazor | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
global-json-file: global.json | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Build | |
run: dotnet build Bit.TemplatePlayground.sln -c Release | |
- name: Install Playwright | |
run: pwsh src/Tests/bin/Debug/net8.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/[email protected] | |
if: ${{ failure() && steps.test.conclusion == 'failure' }} | |
with: | |
name: tests-artifact | |
path: ./src/Tests/TestResults | |
retention-days: 14 |