Click on status bar item to check for updates #129
Workflow file for this run
This file contains 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: Continuous Integration | |
on: [push] | |
jobs: | |
build-vscode: | |
name: Build the VSCode extension | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18.x | |
- run: npm install -g typescript | |
- run: npm install -g vsce | |
- run: npm install | |
- name: Package VSCode extension into .vsix file | |
run: vsce package |