debug CC output
This commit is contained in:
parent
53e7822ef0
commit
691ef6048a
|
|
@ -47,6 +47,9 @@ jobs:
|
||||||
# Track progress creates a comment showing review progress
|
# Track progress creates a comment showing review progress
|
||||||
track_progress: true
|
track_progress: true
|
||||||
|
|
||||||
|
# Enable full output for debugging (WARNING: may expose sensitive data in public repos)
|
||||||
|
show_full_output: true
|
||||||
|
|
||||||
prompt: |
|
prompt: |
|
||||||
REPO: ${{ github.repository }}
|
REPO: ${{ github.repository }}
|
||||||
PR NUMBER: ${{ github.event.pull_request.number }}
|
PR NUMBER: ${{ github.event.pull_request.number }}
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,7 @@ jobs:
|
||||||
- name: ESLint
|
- name: ESLint
|
||||||
run: npm run lint
|
run: npm run lint
|
||||||
|
|
||||||
schema-validation:
|
validate:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|
@ -68,56 +68,11 @@ jobs:
|
||||||
- name: Validate YAML schemas
|
- name: Validate YAML schemas
|
||||||
run: npm run validate: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
|
- name: Run agent schema validation tests
|
||||||
run: npm run test:schemas
|
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
|
- name: Test agent compilation components
|
||||||
run: npm run test:install
|
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
|
- name: Validate web bundles
|
||||||
run: npm run validate:bundles
|
run: npm run validate:bundles
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue