Skip to content

Commit 5b0c4c1

Browse files
committed
ci: add Node 17 to matrix
1 parent ffdd944 commit 5b0c4c1

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,11 @@ jobs:
142142
MONGODB_TOPOLOGY: standalone
143143
MONGODB_STORAGE_ENGINE: wiredTiger
144144
NODE_VERSION: 14.18.1
145+
- name: Node 17
146+
MONGODB_VERSION: 4.4.10
147+
MONGODB_TOPOLOGY: standalone
148+
MONGODB_STORAGE_ENGINE: wiredTiger
149+
NODE_VERSION: 17.1.0
145150
fail-fast: false
146151
name: ${{ matrix.name }}
147152
timeout-minutes: 15

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ Parse Server is continuously tested with the most recent releases of Node.js to
117117
| Node.js 12 | 12.22.7 | April 2022 | ✅ Yes |
118118
| Node.js 14 | 14.18.1 | April 2023 | ✅ Yes |
119119
| Node.js 16 | 16.13.0 | April 2024 | ✅ Yes |
120+
| Node.js 17 | 17.1.0 | June 2022 | ✅ Yes |
120121

121122
#### MongoDB
122123
Parse Server is continuously tested with the most recent releases of MongoDB to ensure compatibility. We follow the [MongoDB support schedule](https://www.mongodb.com/support-policy) and only test against versions that are officially supported and have not reached their end-of-life date.

ci/ciCheck.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ async function checkNodeVersions() {
6161
'<12.0.0', // These versions have reached their end-of-life support date
6262
'>=13.0.0 <14.0.0', // These versions have reached their end-of-life support date
6363
'>=15.0.0 <16.0.0', // These versions have reached their end-of-life support date
64-
'>=17.0.0', // These versions are not officially supported yet
6564
],
6665
}).check();
6766
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
"madge:circular": "node_modules/.bin/madge ./src --circular"
132132
},
133133
"engines": {
134-
"node": ">=12.20.0 <16"
134+
"node": ">=12.20.0 <18"
135135
},
136136
"bin": {
137137
"parse-server": "bin/parse-server"

0 commit comments

Comments
 (0)