refactor(2.0): cluster 1 — code quality, DI hardening, dialog XamlRoo… #84
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: CI | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: windows-latest | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '10.x' | |
| - name: Restore | |
| run: dotnet restore PassKey.sln | |
| - name: Build Core | |
| run: dotnet build src/PassKey.Core/PassKey.Core.csproj -c Release | |
| - name: Build BrowserHost | |
| run: dotnet build src/PassKey.BrowserHost/PassKey.BrowserHost.csproj -c Release -r win-x64 | |
| - name: Test | |
| run: dotnet test src/PassKey.Tests/PassKey.Tests.csproj --verbosity normal | |
| - name: Build Desktop | |
| run: dotnet build src/PassKey.Desktop/PassKey.Desktop.csproj -p:Platform=x64 -c Release |