feat: add conflict history review #102
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: ci | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| api: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| - run: python -m compileall api | |
| - run: python -m pip install -r api/requirements-dev.txt | |
| - run: python -m pytest api | |
| mcp: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "20" | |
| cache: npm | |
| cache-dependency-path: mcp/package-lock.json | |
| - run: npm ci | |
| working-directory: mcp | |
| - run: npm run build | |
| working-directory: mcp | |
| - run: npm run verify:defaults | |
| working-directory: mcp | |
| dashboard: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "20" | |
| cache: npm | |
| cache-dependency-path: dashboard/package-lock.json | |
| - run: npm ci | |
| working-directory: dashboard | |
| - run: npm run verify:clerk | |
| working-directory: dashboard | |
| - run: npm run verify:logic | |
| working-directory: dashboard | |
| - run: npm run build | |
| working-directory: dashboard |