Skip to content

Update README with current architecture and Mermaid diagrams #23

Update README with current architecture and Mermaid diagrams

Update README with current architecture and Mermaid diagrams #23

Workflow file for this run

name: Pipeline
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm run typecheck
- run: npm test
deploy:
needs: test
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm run deploy
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CF_TOKEN }}
- run: npm run deploy:github-mcp
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CF_TOKEN }}