Move dependabot file to right directory #4
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: Build Extension | |
on: | |
workflow_dispatch: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build the extension | |
run: yarn package | |
# Add integration tests here: | |
# https://code.visualstudio.com/api/working-with-extensions/continuous-integration | |
# - name: Package the extension | |
# run: | | |
# yarn global add @vscode/vsce | |
# vsce package | |
# - name: Upload artifact | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: extension-package | |
# path: '*.vsix' |