From 691ef6048a01b62e4d352f75c27432334730c3ef Mon Sep 17 00:00:00 2001 From: Murat Ozcan Date: Thu, 6 Nov 2025 10:40:13 -0600 Subject: [PATCH] debug CC output --- .github/workflows/claude-code-review.yaml | 3 ++ .github/workflows/quality.yaml | 47 +---------------------- 2 files changed, 4 insertions(+), 46 deletions(-) diff --git a/.github/workflows/claude-code-review.yaml b/.github/workflows/claude-code-review.yaml index 7f61ad05..b133b049 100644 --- a/.github/workflows/claude-code-review.yaml +++ b/.github/workflows/claude-code-review.yaml @@ -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 }} diff --git a/.github/workflows/quality.yaml b/.github/workflows/quality.yaml index 7a32718b..fc750b62 100644 --- a/.github/workflows/quality.yaml +++ b/.github/workflows/quality.yaml @@ -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