mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
08e356df74
These 8 workflows install uv but never invoke it. Only e2e_dojo.yml actually needs uv (the dojo scripts use uv sync/run for Python agents). Removing the unnecessary step saves CI time and reduces confusion.
67 lines
1.6 KiB
YAML
67 lines
1.6 KiB
YAML
name: test / unit / v1
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths-ignore:
|
|
- "docs/**"
|
|
- "README.md"
|
|
- "examples/**"
|
|
- ".github/workflows/demos_preview.yml"
|
|
- ".github/workflows/release.yml"
|
|
- "packages/v1/**/package.json"
|
|
- "packages/v1/**/CHANGELOG.md"
|
|
- ".changeset/**"
|
|
pull_request:
|
|
branches: [main]
|
|
paths-ignore:
|
|
- "docs/**"
|
|
- "README.md"
|
|
- "examples/**"
|
|
workflow_dispatch:
|
|
inputs:
|
|
branch:
|
|
description: "Branch to run the workflow on"
|
|
required: true
|
|
default: "main"
|
|
type: string
|
|
env:
|
|
NODE_OPTIONS: "--max-old-space-size=4096"
|
|
NX_CI_EXECUTION_ID: ${{ github.head_ref }}-${{ github.sha }}-${{ github.run_attempt }}
|
|
NX_CI_EXECUTION_ENV: "Unit Tests V1"
|
|
|
|
jobs:
|
|
v1:
|
|
name: "unit / v1.x"
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [20.x, 22.x, 24.x]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.event.inputs.branch || github.ref }}
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4
|
|
with:
|
|
version: "10.13.1"
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Generate GraphQL codegen files
|
|
run: npx nx run @copilotkit/runtime-client-gql:graphql-codegen
|
|
|
|
- name: Build
|
|
run: pnpm run build
|
|
|
|
- name: Run tests
|
|
run: npm run test:classic
|