chore: import upstream snapshot with attribution
CI / ci (ubuntu-latest) (push) Failing after 1s
Deploy Homepage / build (push) Failing after 1s
Deploy Homepage / deploy (push) Has been skipped
CI / ci (windows-latest) (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 12:01:15 +08:00
commit 17fc6764c9
470 changed files with 120700 additions and 0 deletions
+64
View File
@@ -0,0 +1,64 @@
name: CI
on:
# Run on every PR so a contributor's first push gets feedback.
pull_request:
# Also run on direct pushes to main so the "main is green" signal is real.
# Without this, main can silently break for days when someone bypasses
# review. (#249)
push:
branches: [main]
# Cancel any in-flight CI for the same ref when a new commit is pushed —
# saves runner minutes and keeps the latest commit's status the only one
# anyone reads. `github.ref` is a controlled value (refs/heads/* or
# refs/pull/*/merge), not user-controlled input, so it's safe to interpolate.
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v7
- uses: pnpm/action-setup@v6
- uses: actions/setup-python@v6
with:
python-version: '3.x'
- uses: actions/setup-node@v6
with:
node-version: 22
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint
- name: Build core
run: pnpm --filter @understand-anything/core build
- name: Build skill
run: pnpm --filter @understand-anything/skill build
- name: Build viewer
run: pnpm --filter understand-anything-viewer build
- name: Test core
run: pnpm --filter @understand-anything/core test
- name: Test skill
run: pnpm test
- name: Test Python skill helpers
run: python -m unittest tests.skill.understand.test_merge_batch_graphs tests.skill.understand.test_merge_subdomain_graphs tests.skill.knowledge.test_parse_knowledge_base -v
+68
View File
@@ -0,0 +1,68 @@
name: Deploy Homepage
on:
push:
branches: [main]
paths:
- 'homepage/**'
- 'understand-anything-plugin/packages/dashboard/**'
- 'understand-anything-plugin/packages/core/**'
- '.github/workflows/deploy-homepage.yml'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v6
with:
node-version: 22
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install dependencies
run: pnpm install
- name: Build homepage
working-directory: homepage
run: pnpm build
- name: Build core
run: pnpm --filter @understand-anything/core build
- name: Build demo dashboard
run: pnpm --filter @understand-anything/dashboard build:demo
env:
VITE_GRAPH_URL: ${{ vars.DEMO_GRAPH_URL }}
VITE_DOMAIN_GRAPH_URL: ${{ vars.DEMO_DOMAIN_GRAPH_URL }}
VITE_META_URL: ${{ vars.DEMO_META_URL }}
- name: Merge demo into homepage output
run: cp -r understand-anything-plugin/packages/dashboard/dist homepage/dist/demo
- uses: actions/upload-pages-artifact@v5
with:
path: homepage/dist
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v5