docs: update handoff and proposals for v1.9.1 settle_ms fix #53
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: Build | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Type check | |
| run: bun run tsc --noEmit | |
| - name: Build vslsp binary | |
| run: bun build --compile --minify vslsp.ts --outfile vslsp | |
| - name: Build vslsp-mcp binary | |
| run: bun build --compile --minify mcp.ts --outfile vslsp-mcp | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '9.0.x' | |
| - name: Build CSharpMapper | |
| run: dotnet publish tools/csharp-mapper/CSharpMapper.csproj -c Release -o tools/csharp-mapper/publish |