Skip to content

docs(readme): add generic install paths and devcontainer guidance #97

docs(readme): add generic install paths and devcontainer guidance

docs(readme): add generic install paths and devcontainer guidance #97

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@v6
- name: Setup Node.js
uses: actions/setup-node@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@v7
with:
name: vsix
path: '*.vsix'