Skip to content

build(deps): bump the github-actions group with 3 updates (#250) #380

build(deps): bump the github-actions group with 3 updates (#250)

build(deps): bump the github-actions group with 3 updates (#250) #380

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v6
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Check (typecheck + lint + spellcheck + knip + test)
run: npm run check
- name: Build
run: npm run build
- name: Check bundle size
run: npm run check-size
- name: Package VSIX
run: npm run package
- name: Upload VSIX artifact
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: vsix
path: '*.vsix'