Bump @types/node from 20.9.0 to 20.11.7 #843
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: CI Build | |
on: | |
push: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'npm' | |
- name: Install dependencies | |
run: | | |
npm ci | |
npm install -g vsce | |
- name: Lint Lockfile | |
run: npm run lint:lockfile | |
- name: Include Git commit in version | |
run: | | |
jq '.version+="-'"$GITHUB_SHA"'"' package.json > package.json.new && mv package.json.new package.json | |
- name: Build Extension | |
run: vsce package | |
- name: Upload Extension as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: extension | |
path: | | |
*.vsix |