Skip to content

[mcp-ui] Adding MCP-UI support to those that support URLs #158

[mcp-ui] Adding MCP-UI support to those that support URLs

[mcp-ui] Adding MCP-UI support to those that support URLs #158

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Check formatting
run: npm run format
- name: Compile typescript
run: npm run build
- name: Run tests
run: npm test