Skip to content

Clean up Claude Desktop connector: top-level imports, error handling,… #20

Clean up Claude Desktop connector: top-level imports, error handling,…

Clean up Claude Desktop connector: top-level imports, error handling,… #20

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Run backend tests
working-directory: backend
run: npm ci && npm test