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: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,12 @@ jobs:
fail_ci_if_error: true
- run: pnpm build
- run: pnpm test:integration
# Prove the exact consumer floor; development and integration stay on Node 24.
- uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0
with:
node-version: "20"
node-version: "22.0.0"
cache: "pnpm"
- run: pnpm test:package
- name: Test packed package on the minimum Node.js version
run: |
node --version
pnpm test:package
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ pnpm add prom-client@^15.1.3
pnpm add hot-shots@^17.0.0
```

DialCache requires Node.js 20 or Node.js 22 and newer.
DialCache requires Node.js 22.0.0 or newer. Production deployments should use a
[currently supported LTS release](https://nodejs.org/en/about/previous-releases).

## Quick start

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
}
},
"engines": {
"node": "20 || >=22"
"node": ">=22.0.0"
},
"dependencies": {
"@types/node": "^24.10.1",
Expand Down
Loading