Add marketing OG unfurl image #201
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Monorepo CI | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| jobs: | |
| memroos: | |
| name: Memroos tests and build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "24" | |
| cache: npm | |
| cache-dependency-path: package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Typecheck | |
| run: npm run typecheck | |
| - name: Lint | |
| run: npm run lint | |
| - name: Run Memroos tests | |
| run: npm test -- --run | |
| - name: Build Memroos | |
| run: npm run build | |
| - name: Docker compose smoke | |
| run: ./scripts/docker-compose-smoke.sh --config-only | |
| services: | |
| name: Python service smoke tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Install test dependencies | |
| run: | | |
| python -m pip install --upgrade pip pytest | |
| python -m pip install -r services/orchestration/requirements.txt | |
| - name: Run Knowledge MCP tests | |
| env: | |
| PYTHONPATH: services/knowledge-mcp | |
| run: python -m pytest services/knowledge-mcp/tests | |
| - name: Run orchestration tests | |
| env: | |
| PYTHONPATH: services/orchestration | |
| run: python -m pytest services/orchestration/tests | |
| - name: Run voice server tests | |
| run: python -m pytest services/voice-server/tests | |
| - name: Compile Python service modules | |
| run: python -m py_compile services/memory/*.py services/knowledge-mcp/knowledge_system/*.py | |
| - name: Check shell scripts | |
| run: bash -n start.sh services/memory/*.sh |