This repository was archived by the owner on Sep 4, 2025. It is now read-only.
[DO NOT MERGE] Vsix Release Test #42
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
| # VS Code Extension CI for azure-mcp-extension | |
| name: VS Code Extension CI | |
| on: | |
| push: | |
| paths: | |
| - 'ext/vscode/**' | |
| pull_request: | |
| paths: | |
| - 'ext/vscode/**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js 18.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18.x | |
| - name: Setup .NET SDK | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '8.0.x' | |
| - name: Install dependencies | |
| run: | | |
| cd ext/vscode | |
| npm ci | |
| - name: Lint | |
| run: | | |
| cd ext/vscode | |
| npm run lint || true | |
| - name: Run unit tests | |
| run: | | |
| cd ext/vscode | |
| npm run unit-test || true | |
| - name: Package extension | |
| run: | | |
| cd ext/vscode | |
| npm run package | |
| - name: Upload VSIX artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: azure-mcp-extension-vsix | |
| path: ext/vscode/*.vsix |