51 lines
1.5 KiB
YAML
51 lines
1.5 KiB
YAML
name: "Integrations: Parity Check"
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "examples/integrations/**"
|
|
- ".github/workflows/integrations_parity.yml"
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- "examples/integrations/**"
|
|
- ".github/workflows/integrations_parity.yml"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
parity-check:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
steps:
|
|
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
|
|
with:
|
|
node-version: "22"
|
|
|
|
- name: Install pnpm
|
|
# Omit `version:` so pnpm/action-setup inherits from the repo's
|
|
# `packageManager` field in package.json (via corepack).
|
|
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
|
|
with:
|
|
run_install: false
|
|
|
|
- name: Install root dev dependencies (tsx)
|
|
run: pnpm install --frozen-lockfile --ignore-scripts --filter=.
|
|
|
|
- name: Verify integration-demo parity
|
|
run: |
|
|
echo "Checking examples/integrations/* against north-star..."
|
|
echo "If this fails, run: pnpm parity:sync --target=<instance>"
|
|
echo "and resolve agent-surface drift manually (see _parity/README.md)."
|
|
pnpm parity:check
|