ci: Add specific node versions (#9198)

This commit is contained in:
Manuel
2024-07-11 18:25:00 +02:00
committed by GitHub
parent 8e43700a88
commit ea86512c01
2 changed files with 24 additions and 24 deletions

View File

@@ -8,7 +8,7 @@ on:
paths-ignore: paths-ignore:
- '**/**.md' - '**/**.md'
env: env:
NODE_VERSION: 20.12.0 NODE_VERSION: 22.4.1
PARSE_SERVER_TEST_TIMEOUT: 20000 PARSE_SERVER_TEST_TIMEOUT: 20000
jobs: jobs:
check-code-analysis: check-code-analysis:
@@ -143,36 +143,36 @@ jobs:
- name: MongoDB 4.2, ReplicaSet - name: MongoDB 4.2, ReplicaSet
MONGODB_VERSION: 4.2.25 MONGODB_VERSION: 4.2.25
MONGODB_TOPOLOGY: replset MONGODB_TOPOLOGY: replset
NODE_VERSION: 22 NODE_VERSION: 22.4.1
- name: MongoDB 4.4, ReplicaSet - name: MongoDB 4.4, ReplicaSet
MONGODB_VERSION: 4.4.29 MONGODB_VERSION: 4.4.29
MONGODB_TOPOLOGY: replset MONGODB_TOPOLOGY: replset
NODE_VERSION: 22 NODE_VERSION: 22.4.1
- name: MongoDB 5, ReplicaSet - name: MongoDB 5, ReplicaSet
MONGODB_VERSION: 5.0.26 MONGODB_VERSION: 5.0.26
MONGODB_TOPOLOGY: replset MONGODB_TOPOLOGY: replset
NODE_VERSION: 22 NODE_VERSION: 22.4.1
- name: MongoDB 6, ReplicaSet - name: MongoDB 6, ReplicaSet
MONGODB_VERSION: 6.0.14 MONGODB_VERSION: 6.0.14
MONGODB_TOPOLOGY: replset MONGODB_TOPOLOGY: replset
NODE_VERSION: 22 NODE_VERSION: 22.4.1
- name: MongoDB 7, ReplicaSet - name: MongoDB 7, ReplicaSet
MONGODB_VERSION: 7.0.8 MONGODB_VERSION: 7.0.8
MONGODB_TOPOLOGY: replset MONGODB_TOPOLOGY: replset
NODE_VERSION: 22 NODE_VERSION: 22.4.1
- name: Redis Cache - name: Redis Cache
PARSE_SERVER_TEST_CACHE: redis PARSE_SERVER_TEST_CACHE: redis
MONGODB_VERSION: 7.0.8 MONGODB_VERSION: 7.0.8
MONGODB_TOPOLOGY: standalone MONGODB_TOPOLOGY: standalone
NODE_VERSION: 22 NODE_VERSION: 22.4.1
- name: Node 18
MONGODB_VERSION: 7.0.8
MONGODB_TOPOLOGY: standalone
NODE_VERSION: 18
- name: Node 20 - name: Node 20
MONGODB_VERSION: 7.0.8 MONGODB_VERSION: 7.0.8
MONGODB_TOPOLOGY: standalone MONGODB_TOPOLOGY: standalone
NODE_VERSION: 20 NODE_VERSION: 20.15.1
- name: Node 18
MONGODB_VERSION: 7.0.8
MONGODB_TOPOLOGY: standalone
NODE_VERSION: 18.20.4
fail-fast: false fail-fast: false
name: ${{ matrix.name }} name: ${{ matrix.name }}
timeout-minutes: 15 timeout-minutes: 15
@@ -221,25 +221,25 @@ jobs:
include: include:
- name: PostgreSQL 13, PostGIS 3.1 - name: PostgreSQL 13, PostGIS 3.1
POSTGRES_IMAGE: postgis/postgis:13-3.1 POSTGRES_IMAGE: postgis/postgis:13-3.1
NODE_VERSION: 20.12.0 NODE_VERSION: 22.4.1
- name: PostgreSQL 13, PostGIS 3.2 - name: PostgreSQL 13, PostGIS 3.2
POSTGRES_IMAGE: postgis/postgis:13-3.2 POSTGRES_IMAGE: postgis/postgis:13-3.2
NODE_VERSION: 20.12.0 NODE_VERSION: 22.4.1
- name: PostgreSQL 13, PostGIS 3.3 - name: PostgreSQL 13, PostGIS 3.3
POSTGRES_IMAGE: postgis/postgis:13-3.3 POSTGRES_IMAGE: postgis/postgis:13-3.3
NODE_VERSION: 20.12.0 NODE_VERSION: 22.4.1
- name: PostgreSQL 13, PostGIS 3.4 - name: PostgreSQL 13, PostGIS 3.4
POSTGRES_IMAGE: postgis/postgis:13-3.4 POSTGRES_IMAGE: postgis/postgis:13-3.4
NODE_VERSION: 20.12.0 NODE_VERSION: 22.4.1
- name: PostgreSQL 14, PostGIS 3.4 - name: PostgreSQL 14, PostGIS 3.4
POSTGRES_IMAGE: postgis/postgis:14-3.4 POSTGRES_IMAGE: postgis/postgis:14-3.4
NODE_VERSION: 20.12.0 NODE_VERSION: 22.4.1
- name: PostgreSQL 15, PostGIS 3.4 - name: PostgreSQL 15, PostGIS 3.4
POSTGRES_IMAGE: postgis/postgis:15-3.4 POSTGRES_IMAGE: postgis/postgis:15-3.4
NODE_VERSION: 20.12.0 NODE_VERSION: 22.4.1
- name: PostgreSQL 16, PostGIS 3.4 - name: PostgreSQL 16, PostGIS 3.4
POSTGRES_IMAGE: postgis/postgis:15-3.4 POSTGRES_IMAGE: postgis/postgis:15-3.4
NODE_VERSION: 20.12.0 NODE_VERSION: 22.4.1
fail-fast: false fail-fast: false
name: ${{ matrix.name }} name: ${{ matrix.name }}
timeout-minutes: 15 timeout-minutes: 15

View File

@@ -127,11 +127,11 @@ Before you start make sure you have installed:
Parse Server is continuously tested with the most recent releases of Node.js to ensure compatibility. We follow the [Node.js Long Term Support plan](https://github.com/nodejs/Release) and only test against versions that are officially supported and have not reached their end-of-life date. Parse Server is continuously tested with the most recent releases of Node.js to ensure compatibility. We follow the [Node.js Long Term Support plan](https://github.com/nodejs/Release) and only test against versions that are officially supported and have not reached their end-of-life date.
| Version | End-of-Life | Compatible | | Version | Latest Version | End-of-Life | Compatible |
|------------|-------------|------------| |------------|----------------|-------------|------------|
| Node.js 18 | April 2025 | ✅ Yes | | Node.js 18 | 18.20.4 | April 2025 | ✅ Yes |
| Node.js 20 | April 2026 | ✅ Yes | | Node.js 20 | 20.15.1 | April 2026 | ✅ Yes |
| Node.js 22 | April 2027 | ✅ Yes | | Node.js 22 | 22.4.1 | April 2027 | ✅ Yes |
#### MongoDB #### MongoDB