mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
2a6c966ab9
Bumps [pnpm/action-setup](https://github.com/pnpm/action-setup) from 4.3.0 to 6.0.8. - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](https://github.com/pnpm/action-setup/compare/v4.3.0...0e279bb959325dab635dd2c09392533439d90093) --- updated-dependencies: - dependency-name: pnpm/action-setup dependency-version: 6.0.8 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
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@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
|
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@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
|
|
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
|