feat(core): expand RequestDefinition and implement writeHttpFile #9
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
| name: CI / VS Code Extension | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - packages/vscode/** | |
| - packages/core/** | |
| - packages/sdk/js/** | |
| jobs: | |
| vscode-integration: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version-file: package.json | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Build VS Code extension | |
| run: bunx turbo run build --filter=t-req-vscode... | |
| - name: Run VS Code integration tests | |
| run: xvfb-run -a bun run --cwd packages/vscode test:integration | |
| - name: Package VSIX | |
| run: bunx @vscode/vsce package --no-dependencies | |
| working-directory: packages/vscode | |
| - name: Upload VSIX artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: t-req-vscode-vsix | |
| path: packages/vscode/*.vsix |