Skip to content

Update repository URL in demo #13

Update repository URL in demo

Update repository URL in demo #13

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./mcp-server-ann
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: ./mcp-server-ann/package-lock.json
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run tests
run: npm test
- name: Run tests with coverage
run: npm run test:coverage
- name: Run E2E tests
run: npm run test:e2e
env:
NODE_ENV: test
- name: Upload coverage report
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: ./mcp-server-ann/coverage/
retention-days: 7