debug CC output

This commit is contained in:
Murat Ozcan 2025-11-06 10:40:13 -06:00
parent 53e7822ef0
commit 691ef6048a
2 changed files with 4 additions and 46 deletions

View File

@ -47,6 +47,9 @@ jobs:
# Track progress creates a comment showing review progress
track_progress: true
# Enable full output for debugging (WARNING: may expose sensitive data in public repos)
show_full_output: true
prompt: |
REPO: ${{ github.repository }}
PR NUMBER: ${{ github.event.pull_request.number }}

View File

@ -50,7 +50,7 @@ jobs:
- name: ESLint
run: npm run lint
schema-validation:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
@ -68,56 +68,11 @@ jobs:
- name: Validate YAML schemas
run: npm run validate:schemas
agent-schema-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run agent schema validation tests
run: npm run test:schemas
installation-components:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Test agent compilation components
run: npm run test:install
bundle-validation:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Validate web bundles
run: npm run validate:bundles