Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/composite-actions/cypress-e2e/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ runs:

- name: Build agents-core (required by setup-dev.js)
shell: bash
run: pnpm turbo run build --filter=@inkeep/agents-core
run: pnpm exec turbo run build --filter=@inkeep/agents-core

- name: Setup development environment
shell: bash
Expand Down Expand Up @@ -83,7 +83,7 @@ runs:

- name: Build dashboard and cookbook monorepo dependencies
shell: bash
run: npx turbo build --filter='@inkeep/agents-manage-ui' --filter='@inkeep/agents-cli' --filter='@inkeep/agents-core' --filter='@inkeep/agents-sdk'
run: pnpm exec turbo build --filter='@inkeep/agents-manage-ui' --filter='@inkeep/agents-cli' --filter='@inkeep/agents-core' --filter='@inkeep/agents-sdk'

- name: Push Weather Example Project
shell: bash
Expand Down
15 changes: 3 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ concurrency:

jobs:
ci:
runs-on: ubuntu-16gb
runs-on: ubuntu-32gb
timeout-minutes: 30
env:
TURBO_TELEMETRY_DISABLED: 1
Expand Down Expand Up @@ -66,15 +66,6 @@ jobs:
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: ${{ runner.os }}-turbo-

- name: Setup Next.js build cache
uses: actions/cache@v4
with:
path: agents-manage-ui/.next/cache
key: ${{ runner.os }}-nextjs-build-${{ hashFiles('pnpm-lock.yaml') }}-${{ hashFiles('agents-manage-ui/src/**', 'packages/agents-core/src/**') }}
restore-keys: |
${{ runner.os }}-nextjs-build-${{ hashFiles('pnpm-lock.yaml') }}-
${{ runner.os }}-nextjs-build-

- name: Setup Playwright cache
uses: actions/cache@v4
with:
Expand Down Expand Up @@ -106,7 +97,7 @@ jobs:
ENVIRONMENT: test
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY || 'sk-test-key-for-ci-testing' }}
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY || 'sk-ant-test-key-for-ci-testing' }}
NODE_OPTIONS: --max-old-space-size=4096
NODE_OPTIONS: --max-old-space-size=8192
INKEEP_AGENTS_MANAGE_DATABASE_URL: postgresql://appuser:password@localhost:5432/inkeep_agents
INKEEP_AGENTS_RUN_DATABASE_URL: postgresql://appuser:password@localhost:5433/inkeep_agents
CI: true
Expand Down Expand Up @@ -157,7 +148,7 @@ jobs:
fi

create-agents-e2e:
runs-on: ubuntu-latest
runs-on: ubuntu-32gb
name: Create Agents E2E Tests

services:
Expand Down
11 changes: 1 addition & 10 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

jobs:
ci:
runs-on: ubuntu-16gb
runs-on: ubuntu-32gb
timeout-minutes: 30

services:
Expand Down Expand Up @@ -87,15 +87,6 @@ jobs:
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: ${{ runner.os }}-turbo-

- name: Setup Next.js build cache
uses: actions/cache@v4
with:
path: agents-manage-ui/.next/cache
key: ${{ runner.os }}-nextjs-build-${{ hashFiles('pnpm-lock.yaml') }}-${{ hashFiles('agents-manage-ui/src/**', 'packages/agents-core/src/**') }}
restore-keys: |
${{ runner.os }}-nextjs-build-${{ hashFiles('pnpm-lock.yaml') }}-
${{ runner.os }}-nextjs-build-

- name: Install dependencies
run: pnpm install --frozen-lockfile
env:
Expand Down
2 changes: 1 addition & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"!**/__tests__/**",
".env.example"
],
"outputs": ["dist/**", "build/**", ".next/**", "!.next/cache/**"]
"outputs": ["dist/**", "build/**", ".next/**", "!.next/cache/**", "!.next/dev/**"]
},
"dev": {
"dependsOn": ["^build"],
Expand Down
66 changes: 0 additions & 66 deletions vitest.config.ci.ts

This file was deleted.