Skip to content

chore: bump workspace versions to 0.11.3 #347

chore: bump workspace versions to 0.11.3

chore: bump workspace versions to 0.11.3 #347

Workflow file for this run

name: Lint & Test
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm typecheck
- name: Build
run: pnpm build
- name: Package VS Code extension
working-directory: extensions/vscode
run: pnpm exec vsce package --no-dependencies
- name: Verify VS Code extension artifact
run: ls extensions/vscode/*.vsix
- name: Test
run: pnpm test
# Uncomment when lint tools are configured
# - name: Lint
# run: pnpm lint