Fixes "label completion with space after" test (#599) #315
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
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| env: | |
| NODE_OPTIONS: '--max_old_space_size=8192' | |
| jobs: | |
| archive-vscode-artifacts: | |
| name: Archives VSCode artifacts | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup project | |
| uses: ./.github/actions/setup-and-build | |
| - name: Generate VSCode plugin package | |
| run: | | |
| cd packages/vscode-extension | |
| pnpm package | |
| - uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: vscode-extension | |
| path: packages/vscode-extension/*.vsix | |
| retention-days: 30 |