mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-25 03:45:46 -06:00
234df15a6d
* build(deps): refresh dependencies after cooldown Apply dependency, toolchain, action, image, and exact tool updates released by the inclusive 2026-08-16 seven-day cutoff. Adapt owner boundaries for the resulting CUA, logging, Teams, Markdown, native, and test-harness contract changes while retaining versions blocked by upstream compatibility constraints. * fix(ui): align markdown renderer env typing * fix(deps): align postcss and mistral peer contracts * fix(deps): repair refreshed dependency contracts * fix(deps): retain tslog startup budget * fix(ci): verify Android tools with SHA-256 * fix(ci): fence Android SDK cache version
53 lines
1.9 KiB
YAML
53 lines
1.9 KiB
YAML
name: Plugin Init Scaffold Validation
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- ".github/workflows/plugin-init-scaffold-validation.yml"
|
|
- "package.json"
|
|
- "pnpm-lock.yaml"
|
|
- "scripts/validate-plugin-init-provider-scaffold.ts"
|
|
- "src/cli/plugins-authoring-command.ts"
|
|
- "src/cli/plugins-authoring-command.test.ts"
|
|
- "src/cli/plugins-cli.ts"
|
|
- "src/plugin-sdk/**"
|
|
pull_request:
|
|
types: [opened, reopened, synchronize, ready_for_review]
|
|
paths:
|
|
- ".github/workflows/plugin-init-scaffold-validation.yml"
|
|
- "package.json"
|
|
- "pnpm-lock.yaml"
|
|
- "scripts/validate-plugin-init-provider-scaffold.ts"
|
|
- "src/cli/plugins-authoring-command.ts"
|
|
- "src/cli/plugins-authoring-command.test.ts"
|
|
- "src/cli/plugins-cli.ts"
|
|
- "src/plugin-sdk/**"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
|
|
|
jobs:
|
|
validate-provider-scaffold:
|
|
name: Validate provider scaffold
|
|
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
|
|
runs-on: ${{ vars.OPENCLAW_CI_RUNNER_BACKEND == 'github' && 'ubuntu-24.04' || (github.repository == 'openclaw/openclaw' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'openclaw/openclaw') && 'blacksmith-4vcpu-ubuntu-2404' || 'ubuntu-24.04') }}
|
|
timeout-minutes: 30
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
|
|
- name: Setup Node environment
|
|
uses: ./.github/actions/setup-node-env
|
|
with:
|
|
cache-mode: restore
|
|
install-bun: "false"
|
|
|
|
- name: Generate and validate provider scaffold
|
|
run: pnpm test:plugins:init-provider-scaffold
|