ADD: instruction for installing #9
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: VSCodeExtension | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: Install vsce | |
run: npm install -g vsce | |
- name: Build VSIX package | |
run: | | |
cd VSCode/scriptsync | |
npm install | |
vsce package | |
- name: Save artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: script-sync | |
path: VSCode/scriptsync/*.vsix |