chore(deps): update dependency @types/node to v20.12.8 #643
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: Build Test | |
# On push to main, when one of the following labels exists: `patch`, `minor`, `major` | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
if: ${{ contains(github.event.pull_request.labels.*.name, 'patch') || contains(github.event.pull_request.labels.*.name, 'minor') || contains(github.event.pull_request.labels.*.name, 'major') }} | |
name: Build Test | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Source Files | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3 | |
with: | |
node-version: 18.x | |
cache: "npm" | |
- name: Install Dependencies | |
run: npm install | |
- name: Build Extension | |
run: npm run vsce -- ls |