Skip to content

Bump @types/node from 25.9.1 to 26.1.1 #214

Bump @types/node from 25.9.1 to 26.1.1

Bump @types/node from 25.9.1 to 26.1.1 #214

Workflow file for this run

name: build
on:
release:
types:
- published
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Update version
if: ${{ github.event_name == 'release' }}
run: npm version --no-git-tag-version ${{ github.ref_name }}
- name: NPM install
run: npm ci
- name: Compile
run: npm run compile
- name: Compile web
run: npm run compile-web
- name: Package vscode extension
run: npm run package
- name: Publish to marketplace
if: ${{ github.event_name == 'release' }}
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
run: npm run deploy