Skip to content

build(deps-dev): bump @types/node from 20.10.2 to 22.5.2 #1285

build(deps-dev): bump @types/node from 20.10.2 to 22.5.2

build(deps-dev): bump @types/node from 20.10.2 to 22.5.2 #1285

Workflow file for this run

name: Build and Test
on: [pull_request]
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Cache node modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-build-${{ env.cache-name }}-
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: Installing VSCode VSCE
run: npm i -g @vscode/vsce@latest
- name: Installing Dependencies
run: npm ci
- name: Building VSCode Extension
run: npm run package