Skip to content

feat(mcp): add comprehensive debug logging and user notification #29

feat(mcp): add comprehensive debug logging and user notification

feat(mcp): add comprehensive debug logging and user notification #29

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
tags-ignore:
- "*"
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 10
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 23.11.0
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm run lint
- name: Compile tests
run: pnpm run compile-tests
- name: Install Xvfb
run: sudo apt-get install -y xvfb
- name: Run unit tests
run: xvfb-run -a pnpm run test:unit
- name: Build extension
run: pnpm run compile