Remove Electron app source (#282) #269
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: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 25 | |
| cache: npm | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Restore C# solution | |
| run: npm run dotnet:restore | |
| - name: Build C# solution | |
| run: npm run dotnet:build | |
| - name: Test C# solution | |
| run: npm run dotnet:test | |
| - name: Stage C# Windows package | |
| run: npm run dotnet:package:win:stage | |
| - name: Verify staged C# Windows package | |
| run: npm run dotnet:package:win:verify |