Skip to content

Commit 5579ce5

Browse files
committed
add node 17 CI environment
1 parent 8f7393f commit 5579ce5

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,11 @@ jobs:
152152
MONGODB_TOPOLOGY: standalone
153153
MONGODB_STORAGE_ENGINE: wiredTiger
154154
NODE_VERSION: 14.19.1
155+
- name: Node 17
156+
MONGODB_VERSION: 4.4.10
157+
MONGODB_TOPOLOGY: standalone
158+
MONGODB_STORAGE_ENGINE: wiredTiger
159+
NODE_VERSION: 17.8.0
155160
fail-fast: false
156161
name: ${{ matrix.name }}
157162
timeout-minutes: 15

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Parse Server is continuously tested with the most recent releases of Node.js to
117117
| Node.js 12 | 12.22.11 | April 2022 | ✅ Yes |
118118
| Node.js 14 | 14.19.1 | April 2023 | ✅ Yes |
119119
| Node.js 16 | 16.14.2 | April 2024 | ✅ Yes |
120-
| Node.js 17 | 17.x | June 2022 | ❌ Not tested |
120+
| Node.js 17 | 17.8.0 | June 2022 | ✅ Yes |
121121

122122
#### MongoDB
123123
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ 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
64+
'>=18.0.0', // These versions are not officially supported yet
6565
],
6666
}).check();
6767
}

0 commit comments

Comments
 (0)