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/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CI pipeline for the OpenDecree TypeScript SDK.
#
# Jobs: lint, typecheck, test (matrix: Node 20/22/24), examples, integration → check (alls-green gate)
# Jobs: lint, typecheck, test (matrix: Node 22/24), examples, integration → check (alls-green gate)
# The check job aggregates all results for branch protection.
#
# The first job defines YAML anchors (&checkout, &setup-node-22, &install)
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: ["20", "22", "24"]
node-version: ["22", "24"]
steps:
- *checkout
- name: Set up Node.js ${{ matrix.node-version }}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ TypeScript SDK for [OpenDecree](https://github.com/opendecree/decree) -- schema-

## Requirements

- Node.js **≥ 20** (ESM-only package — CommonJS is not supported)
- Node.js **≥ 22** (ESM-only package — CommonJS is not supported)

## Install

Expand Down Expand Up @@ -105,7 +105,7 @@ Runnable examples in the [`examples/`](examples/) directory:

## Requirements

- Node.js 20+
- Node.js 22+
- A running OpenDecree server (v0.8.0 – v0.x, pre-1.0)

## Questions?
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"url": "https://github.com/opendecree/decree-typescript/issues"
},
"engines": {
"node": ">=20"
"node": ">=22"
},
"dependencies": {
"@grpc/grpc-js": "^1.12.0"
Expand Down