Skip to content

Commit 6e257e9

Browse files
committed
Node 22 not node 20
1 parent eef5560 commit 6e257e9

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/cd_dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup Node.js
2626
uses: actions/setup-node@master
2727
with:
28-
node-version: "20"
28+
node-version: "22"
2929
- name: Cache node modules
3030
uses: actions/cache@master
3131
env:

.github/workflows/cd_prod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup Node.js
1313
uses: actions/setup-node@master
1414
with:
15-
node-version: "20"
15+
node-version: "22"
1616

1717
# Speed up subsequent runs with caching
1818
- name: Cache node modules

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
"license": "UNLICENSED",
2020
"author": "Research Computing Group <research.computing@slu.edu> (https://slu.edu)",
2121
"repository": "github:CenterForDigitalHumanities/rerum_server_nodejs",
22+
"engines": {
23+
"node": ">=22.12.0"
24+
},
2225
"scripts": {
2326
"start": "node ./bin/rerum_v1.js",
2427
"test": "jest",

0 commit comments

Comments
 (0)