Skip to content

Commit 804ad22

Browse files
Set Node 24 floor for corbits-mailbox (CL-8547) (#27)
1 parent 930c022 commit 804ad22

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,11 @@ jobs:
5656

5757
# A consumer on plain Node must be able to install and import the
5858
# tarball; Node cannot strip types, so a src-pointing manifest would die
59-
# here rather than after publish.
59+
# here rather than after publish. Pinned to the engines floor (Node 24).
60+
- uses: actions/setup-node@v4
61+
with:
62+
node-version: 24
63+
6064
- name: node consumer smoke test
6165
run: |
6266
set -euo pipefail

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ threading/search, `/me/threads*` — is gone. The vendored `@intx/mailbox`
1010
`executeSearch`/`executeThread` are the search and thread primitives now, run
1111
directly over the native store.
1212

13-
Requires `@intx` 0.2.2 or newer.
13+
Requires `@intx` 0.2.2 or newer and Node 24 or newer.
1414

1515
See [ARCHITECTURE.md](./ARCHITECTURE.md) for the data model.
1616

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"url": "https://github.com/corbitsdev/corbits-mailbox/issues"
2525
},
2626
"engines": {
27-
"node": ">=22"
27+
"node": ">=24"
2828
},
2929
"corbits": {
3030
"minimumIntxVersion": "0.2.2"

0 commit comments

Comments
 (0)