Skip to content

fix: install wizard uses code --add-mcp + profile patching (v0.2.5) #18

fix: install wizard uses code --add-mcp + profile patching (v0.2.5)

fix: install wizard uses code --add-mcp + profile patching (v0.2.5) #18

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
ci:
name: Lint · Typecheck · Unit Tests · Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Unit tests
run: npm run test:unit
- name: Build
run: npm run build
- name: Upload coverage
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage/
if-no-files-found: ignore