Add test to check that the extension does not cause issues with non-qmd files #124
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: Build VS Code Extension | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'apps/lsp/**' | |
| - 'apps/vscode/**' | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'apps/lsp/**' | |
| - 'apps/vscode/**' | |
| workflow_dispatch: | |
| jobs: | |
| package-extension: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| vsixPath: ${{ steps.package_extension.outputs.vsixPath }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: latest | |
| - run: yarn install --immutable --immutable-cache --check-cache | |
| - name: Package extension | |
| uses: HaaLeo/publish-vscode-extension@v2 | |
| id: package_extension | |
| with: | |
| pat: not-a-real-pat | |
| yarn: true | |
| dryRun: true | |
| preRelease: true | |
| packagePath: apps/vscode | |
| - name: Upload extension vsix file as a workflow artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: quarto-vscode-${{ github.sha }} | |
| path: ${{ steps.package_extension.outputs.vsixPath }} |