[01286] Add light border on images in Markdown widget #6048
Workflow file for this run
This file contains hidden or 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: Backend Checks (Windows) | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| jobs: | |
| backend-checks: | |
| runs-on: windows-latest | |
| defaults: | |
| run: | |
| working-directory: src | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # Setup Node.js (needed for integrated frontend build in dotnet build) | |
| - uses: voidzero-dev/setup-vp@v1 | |
| # Setup .NET | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: "10.0.x" | |
| # Update workloads | |
| - name: Update .NET workloads | |
| run: dotnet workload update | |
| # Restore packages | |
| - name: Restore packages | |
| run: dotnet restore | |
| # Check code formatting | |
| - name: Check code formatting | |
| run: dotnet format --verify-no-changes | |
| # Build solution | |
| - name: Build solution | |
| run: dotnet build --configuration Release | |
| # Run tests | |
| - name: Run tests | |
| run: dotnet test --configuration Release --no-build --verbosity normal |