Skip to content

Commit

Permalink
ci: bump environment (parse-community#2255)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Sep 12, 2022
1 parent 0f780a6 commit 7c0c8c4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches:
- '**'
env:
NODE_VERSION: 16.10.0
NODE_VERSION: 16.17.0
jobs:
check-ci:
name: Node Engine Check
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion ci/ciCheck.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 7c0c8c4

Please sign in to comment.