Skip to content

Update MCP server configuration and improve error handling #1

Update MCP server configuration and improve error handling

Update MCP server configuration and improve error handling #1

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run linting and formatting checks
run: yarn run quality
- name: Build project
run: yarn run build
- name: Validate DXT manifest
run: yarn run dxt:validate