Skip to content
Open
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
2 changes: 2 additions & 0 deletions .github/workflows/cross-language-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:

- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: '24'

- name: Setup Go
uses: actions/setup-go@v5
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,16 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: ['22', '24']

steps:
- name: Checkout code
uses: actions/checkout@v6

- name: Use Node.js
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}

- name: Setup Python
uses: actions/setup-python@v5
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ web runtimes.

## 🚀 Installation

> **Prerequisite:** ADK for TypeScript requires a current Node.js LTS release.
> **Prerequisite:** ADK for TypeScript requires Node.js 22.13.0 or newer. CI
> runs against the supported LTS lines, currently Node 22 and Node 24.

```bash
npm install @google/adk
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@
"dev",
"integrations"
],
"engines": {
"node": ">=22.13.0"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@google/genai": "^2.9.0",
Expand Down
Loading