Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 3 additions & 26 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,13 @@ on:

jobs:
smoke:
name: Smoke / ${{ matrix.os }} / Node ${{ matrix.node }} / Python ${{ matrix.python }}
name: Smoke / ${{ matrix.os }} / Node ${{ matrix.node }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
node: [22, 24]
python: [3.12, 3.13]

steps:
- name: Checkout
Expand All @@ -28,22 +27,9 @@ jobs:
with:
node-version: ${{ matrix.node }}

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true

- name: Configure uv to use matrix Python version
run: echo "UV_PYTHON=python${{ matrix.python }}" >> $GITHUB_ENV

- name: Install dependencies (monorepo)
run: pnpm install

Expand Down Expand Up @@ -75,8 +61,9 @@ jobs:
fi
done

# Clean up background process
# Clean up background process (ignore SIGTERM exit code from pnpm)
kill $FRONTEND_PID 2>/dev/null || true
wait $FRONTEND_PID 2>/dev/null || true

if [ "$started" = false ]; then
echo "❌ Frontend failed to start within 30 seconds"
Expand Down Expand Up @@ -127,19 +114,9 @@ jobs:
with:
node-version: 22

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.12

- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true

- name: Install dependencies
run: pnpm install

Expand Down
12 changes: 0 additions & 12 deletions apps/agent/package.json

This file was deleted.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"name": "copilotkit-langgraph-template",
"private": true,
"scripts": {
"dev": "turbo run dev",
"dev:app": "turbo run dev --filter='app'",
"dev:agent": "turbo run dev --filter='agent'",
"dev:mcp": "turbo run dev --filter='mcp'",
"dev": "concurrently \"turbo run dev\" \"pnpm run dev:agent\" --names turbo,agent --kill-others",
"dev:app": "turbo run dev --filter='@repo/app'",
"dev:agent": "cd apps/agent && uv sync && uv run uvicorn main:app --host 0.0.0.0 --port 8123 --reload",
"dev:mcp": "turbo run dev --filter='open-generative-ui-mcp'",
"build": "turbo run build",
"lint": "turbo run lint",
"clean": "turbo run clean"
Expand Down
Loading
Loading