Skip to content

Update GC Forms extension integration #12

Update GC Forms extension integration

Update GC Forms extension integration #12

Workflow file for this run

name: PR Quality
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
permissions:
contents: read
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.13
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run PR quality workflow
env:
PR_BASE_REF: ${{ github.base_ref }}
run: bash scripts/agent/quality-pr.sh "origin/${PR_BASE_REF}"
- name: Run coverage gate
run: bun run test:coverage
- name: Upload PR quality reports
if: always()
uses: actions/upload-artifact@v4
with:
name: pr-quality-reports
path: .agent/reports/pr/
if-no-files-found: warn