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
Loading