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
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,18 @@ jobs:
library:
name: Library — lint / test / build
runs-on: ubuntu-latest
env:
LIBS: chat,langgraph,ag-ui,render,a2ui,partial-json,licensing
steps:
- uses: actions/checkout@v6.0.2
- uses: actions/setup-node@v6.3.0
with:
node-version: 22
cache: npm
- run: npm ci
- run: npx nx lint langgraph
- run: npx nx test langgraph --coverage
- run: npx nx build langgraph --configuration=production
- run: npx nx run-many -t lint --projects=$LIBS
- run: npx nx run-many -t test --projects=$LIBS --coverage
- run: npx nx run-many -t build --projects=$LIBS --configuration=production

website:
name: Website — lint / build
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ jobs:

- run: npm ci

# Trusted publishing requires npm CLI 11.5.1+. Node 22's bundled npm
# is 10.x which has partial OIDC support but doesn't fully implement
# the trusted-publishing flow against npm registry's OIDC endpoint.
- name: Upgrade npm to support trusted publishing
run: npm install -g npm@latest

- name: Lint, test, build publishable projects
run: npx nx run-many -t lint,test,build --projects=$NPM_PUBLISHABLE_PROJECTS --skip-nx-cache

Expand Down
1 change: 0 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ This file is for agents working in this repository. It is contributor-facing, no
- `apps/website`: docs and marketing site.
- `packages/mcp`: MCP server package (`@ngaf/langgraph-mcp`).
- `e2e/agent-e2e`: end-to-end coverage for the workspace.
- `apps/demo` and `apps/demo-e2e`: demo application and related end-to-end coverage.

## Working in This Repo

Expand Down
12 changes: 0 additions & 12 deletions apps/demo-e2e/eslint.config.mjs

This file was deleted.

5 changes: 0 additions & 5 deletions apps/demo-e2e/package.json

This file was deleted.

68 changes: 0 additions & 68 deletions apps/demo-e2e/playwright.config.ts

This file was deleted.

9 changes: 0 additions & 9 deletions apps/demo-e2e/project.json

This file was deleted.

8 changes: 0 additions & 8 deletions apps/demo-e2e/src/example.spec.ts

This file was deleted.

30 changes: 0 additions & 30 deletions apps/demo-e2e/tsconfig.json

This file was deleted.

34 changes: 0 additions & 34 deletions apps/demo/eslint.config.mjs

This file was deleted.

79 changes: 0 additions & 79 deletions apps/demo/project.json

This file was deleted.

Binary file removed apps/demo/public/favicon.ico
Binary file not shown.
8 changes: 0 additions & 8 deletions apps/demo/src/app/app.config.ts

This file was deleted.

Empty file removed apps/demo/src/app/app.css
Empty file.
1 change: 0 additions & 1 deletion apps/demo/src/app/app.html

This file was deleted.

18 changes: 0 additions & 18 deletions apps/demo/src/app/app.spec.ts

This file was deleted.

12 changes: 0 additions & 12 deletions apps/demo/src/app/app.ts

This file was deleted.

59 changes: 0 additions & 59 deletions apps/demo/src/app/chat-demo/chat-demo.component.ts

This file was deleted.

Loading
Loading