Skip to content
Open
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
12 changes: 12 additions & 0 deletions .github/workflows/composer_build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,14 @@ on:
push:
paths:
- 'tools/composer/**'
- 'renderers/react/**'
- 'renderers/web_core/**'
- '.github/workflows/composer_build_and_test.yml'
pull_request:
paths:
- 'tools/composer/**'
- 'renderers/react/**'
- 'renderers/web_core/**'
- '.github/workflows/composer_build_and_test.yml'

jobs:
Expand All @@ -43,6 +47,14 @@ jobs:
cache: 'pnpm'
cache-dependency-path: 'tools/composer/pnpm-lock.yaml'

- name: Build web_core (dependency of @a2ui/react)
working-directory: ./renderers/web_core
run: npm ci && npm run build

- name: Build React renderer (local file dependency)
working-directory: ./renderers/react
run: npm ci && npm run build

- name: Install dependencies
working-directory: ./tools/composer
run: pnpm install
Expand Down
1 change: 1 addition & 0 deletions tools/composer/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,4 @@ yarn-error.log*
__pycache__

.playwright-mcp
RENDERER_ISSUES.md
3 changes: 2 additions & 1 deletion tools/composer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"dependencies": {
"@copilotkit/a2ui-renderer": "1.50.1",
"@a2ui/react": "file:../../renderers/react",
"@a2ui/web_core": "file:../../renderers/web_core",
"@copilotkit/react-core": "^1.50.1",
"@copilotkit/react-ui": "^1.50.1",
"@copilotkit/runtime": "^1.50.1",
Expand Down
Loading