mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-05 07:08:19 +00:00
MM² Main core use node >= v20 // delete node v18 from test suite (#3463)
#3462
This commit is contained in:
parent
63324454a9
commit
bc27c46723
2
.github/workflows/automated-tests.yaml
vendored
2
.github/workflows/automated-tests.yaml
vendored
@ -18,7 +18,7 @@ jobs:
|
|||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
node-version: [18.x, 20.x, 22.x]
|
node-version: [20.x, 22.x]
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout code"
|
- name: "Checkout code"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
8
.github/workflows/electronRebuild.yaml
vendored
8
.github/workflows/electronRebuild.yaml
vendored
@ -6,9 +6,17 @@ jobs:
|
|||||||
rebuild:
|
rebuild:
|
||||||
name: Run electron-rebuild
|
name: Run electron-rebuild
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [20.x, 22.x]
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
- name: "Use Node.js ${{ matrix.node-version }}"
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
|
check-latest: true
|
||||||
- name: Install MagicMirror
|
- name: Install MagicMirror
|
||||||
run: npm run install-mm
|
run: npm run install-mm
|
||||||
- name: Install @electron/rebuild
|
- name: Install @electron/rebuild
|
||||||
|
@ -13,9 +13,12 @@ _This release is scheduled to be released on 2024-07-01._
|
|||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
|
- [test suite] delete node v18 support
|
||||||
|
|
||||||
### Updated
|
### Updated
|
||||||
|
|
||||||
- [chore] Update dependencies including electron to v30
|
- [chore] Update dependencies including electron to v30
|
||||||
|
- [core] use node >= v20
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
@ -95,7 +95,7 @@
|
|||||||
"electron": "^30.1.0"
|
"electron": "^30.1.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18"
|
"node": ">=20"
|
||||||
},
|
},
|
||||||
"_moduleAliases": {
|
"_moduleAliases": {
|
||||||
"node_helper": "js/node_helper.js",
|
"node_helper": "js/node_helper.js",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user