Skip to content

docs(readme): document agent/skills additions, test and notes #2

docs(readme): document agent/skills additions, test and notes

docs(readme): document agent/skills additions, test and notes #2

Workflow file for this run

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"