Merge remote-tracking branch 'origin/main' #5
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] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| windows-validation: | |
| runs-on: windows-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| cache-dependency-path: NovaDesktop.Electron/package-lock.json | |
| - name: Run AgentOS smoke tests | |
| run: dotnet run --project NovaDesktop.SmokeTests/NovaDesktop.SmokeTests.csproj | |
| - name: Install Electron dependencies | |
| working-directory: NovaDesktop.Electron | |
| run: npm ci | |
| - name: Build Electron shell and bridge | |
| working-directory: NovaDesktop.Electron | |
| run: npm run build | |
| - name: Verify Electron bridge | |
| working-directory: NovaDesktop.Electron | |
| run: npm run smoke:bridge |