docs(readme): document agent/skills additions, test and notes #2
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: | |
| branches: [ main, master ] | |
| pull_request: | |
| branches: [ main, master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.11' | |
| - name: Install backend deps | |
| run: | | |
| python -m pip install -r backend/requirements.txt | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| - name: Install frontend deps | |
| run: | | |
| cd frontend && npm install | |
| - name: Build frontend | |
| run: | | |
| cd frontend && npm run build | |
| - name: Run basic backend lint/test (placeholder) | |
| run: | | |
| echo "No tests configured yet" |