mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
61 lines
2.3 KiB
YAML
61 lines
2.3 KiB
YAML
name: static / intelligence contracts
|
|
|
|
# Deliberately unfiltered. A non-canonical Intelligence key name can appear in
|
|
# any README, example, skill, or doc page, and the two workflows that would
|
|
# otherwise cover this both filter paths — plugin-skills-check by `paths:` and
|
|
# static/quality by `paths-ignore: examples/**`, which is precisely where the
|
|
# deprecated alias still lives. Scoping this job would re-open the hole it
|
|
# exists to close.
|
|
#
|
|
# The wiring-block check needs the same reach for the same reason. The starters'
|
|
# Intelligence block lives under `examples/**`, which static/quality ignores,
|
|
# and the parity drift check exempts the route it sits in (OSS-982).
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0
|
|
|
|
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
|
|
with:
|
|
node-version: 20
|
|
cache: pnpm
|
|
|
|
- run: pnpm install --frozen-lockfile
|
|
|
|
# The rules are unit-tested here rather than by a general runner: nothing
|
|
# else executes scripts/__tests__, so a rule that silently stopped
|
|
# matching would leave the check below passing on an empty result.
|
|
- name: Test the validator's rules
|
|
run: pnpm exec vitest run scripts/__tests__/validate-intelligence-env-names.test.ts
|
|
|
|
- name: Check Intelligence env var names are canonical
|
|
run: pnpm check:intelligence-env-names
|
|
|
|
# Same reasoning as above: the rules are unit-tested here because nothing
|
|
# else executes scripts/__tests__, and a discovery grep that stopped
|
|
# matching would leave the check below passing on an empty file list.
|
|
- name: Test the wiring-block validator's rules
|
|
run: pnpm exec vitest run scripts/__tests__/validate-intelligence-wiring-block.test.ts
|
|
|
|
- name: Check the starters' Intelligence wiring block is one shape
|
|
run: pnpm check:intelligence-wiring-block
|