From f19c14445ee4c072d2aff01d8c31c9b6d316d28b Mon Sep 17 00:00:00 2001 From: mtrezza Date: Thu, 8 Sep 2022 02:10:11 +0000 Subject: [PATCH 1/2] ci: bump environment From 43649f7697de082f0c425906b6971a43053f7274 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Mon, 12 Sep 2022 22:41:47 +0200 Subject: [PATCH 2/2] bump node in CI --- .github/workflows/ci.yml | 10 +++++----- README.md | 6 +++--- ci/ciCheck.js | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64c8eaed87..964334ed8d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ on: branches: - '**' env: - NODE_VERSION: 16.10.0 + NODE_VERSION: 16.17.0 jobs: check-ci: name: Node Engine Check @@ -17,7 +17,7 @@ jobs: - name: Use Node.js ${{ env.NODE_VERSION }} uses: actions/setup-node@v1 with: - node-version: ${{ env.node-version }} + node-version: ${{ env.NODE_VERSION }} - name: Cache Node.js modules uses: actions/cache@v2 with: @@ -38,7 +38,7 @@ jobs: - name: Use Node.js ${{ env.NODE_VERSION }} uses: actions/setup-node@v1 with: - node-version: ${{ env.node-version }} + node-version: ${{ env.NODE_VERSION }} - name: Cache Node.js modules uses: actions/cache@v2 with: @@ -58,7 +58,7 @@ jobs: - name: Use Node.js ${{ env.NODE_VERSION }} uses: actions/setup-node@v1 with: - node-version: ${{ env.node-version }} + node-version: ${{ env.NODE_VERSION }} - name: Cache Node.js modules uses: actions/cache@v2 with: @@ -116,7 +116,7 @@ jobs: - name: Node 14 NODE_VERSION: 14.19.2 - name: Node 16 - NODE_VERSION: 16.10.0 + NODE_VERSION: 16.17.0 fail-fast: false name: ${{ matrix.name }} timeout-minutes: 15 diff --git a/README.md b/README.md index 245a35885e..39f047e171 100644 --- a/README.md +++ b/README.md @@ -102,10 +102,10 @@ Parse Dashboard is continuously tested with the most recent releases of Node.js | Version | Latest Version | End-of-Life | Compatible | |------------|----------------|-------------|--------------| -| Node.js 12 | 12.22.12 | April 2022 | ✅ Yes | +| Node.js 12 | 12.22.12 | April 2022 | ✅ Yes | | Node.js 14 | 14.19.2 | April 2023 | ✅ Yes | -| Node.js 16 | 16.10.0 | April 2024 | ✅ Yes | -| Node.js 17 | 17.x | June 2022 | ❌ Not tested | +| Node.js 16 | 16.17.0 | April 2024 | ✅ Yes | +| Node.js 18 | 18.x | April 2025 | ❌ Not tested | ## Configuring Parse Dashboard diff --git a/ci/ciCheck.js b/ci/ciCheck.js index c3d08ec59f..2c24db28c8 100644 --- a/ci/ciCheck.js +++ b/ci/ciCheck.js @@ -28,7 +28,7 @@ async function checkNodeVersions() { '<12.0.0', // These versions have reached their end-of-life support date '>=13.0.0 <14.0.0', // These versions have reached their end-of-life support date '>=15.0.0 <16.0.0', // These versions have reached their end-of-life support date - '>=16.0.0' // Parse Dashboard is currently not officially Node 16 compatible + '>=17.0.0 <18.0.0', // These versions have reached their end-of-life support date ], }).check(); }