diff --git a/.github/workflows/electron-rebuild.yaml b/.github/workflows/electron-rebuild.yaml index 5c5e9b5a3f..bf972b11a6 100644 --- a/.github/workflows/electron-rebuild.yaml +++ b/.github/workflows/electron-rebuild.yaml @@ -19,8 +19,8 @@ jobs: check-latest: true - name: Install MagicMirror run: npm run install-mm - - name: Install @electron/rebuild - run: npm install @electron/rebuild + - name: Install @electron/rebuild and tests deps + run: npm install @electron/rebuild https://github.com/nodejs/nan#node23 node-abi@latest - name: Install node-libgpiod deps run: sudo apt-get install gpiod libgpiod2 libgpiod-dev - name: Install test library (node-libgpiod) to be rebuilded diff --git a/CHANGELOG.md b/CHANGELOG.md index 3158a93016..6112f63b36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ _This release is scheduled to be released on 2025-01-01._ - [core] Add wayland and windows start options to `package.json` (#3594) - [linter] re-added `eslint-plugin-import`now that it supports ESLint v9 (#3586) - [docs] Added step for npm publishing in release process (#3595) +- [TEST] ### Removed diff --git a/package-lock.json b/package-lock.json index 34ef5da3ac..f2c739cc82 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,6 +13,7 @@ "ajv": "^8.17.1", "ansis": "^3.3.2", "console-stamp": "^3.1.2", + "electron": "^33.0.2", "envsub": "^4.1.0", "eslint": "^9.13.0", "express": "^4.21.1", @@ -53,7 +54,7 @@ "node": ">=20.9.0 <21 || 22 || >=23" }, "optionalDependencies": { - "electron": "^32.2.1" + "electron": "^33.0.2" } }, "node_modules/@altano/repository-tools": { @@ -4926,9 +4927,9 @@ "license": "MIT" }, "node_modules/electron": { - "version": "32.2.1", - "resolved": "https://registry.npmjs.org/electron/-/electron-32.2.1.tgz", - "integrity": "sha512-GCPI/5hU34pPcNltNpz+uylhhuTm9BM0N8RmrbVgaWBodLSmmcCkvpgN0BseKhO6IwQOPzWaovrcZ/nPIpfGaQ==", + "version": "33.0.2", + "resolved": "https://registry.npmjs.org/electron/-/electron-33.0.2.tgz", + "integrity": "sha512-C2WksfP0COsMHbYXSJG68j6S3TjuGDrw/YT42B526yXalIlNQZ2GeAYKryg6AEMkIp3p8TUfDRD0+HyiyCt/nw==", "hasInstallScript": true, "license": "MIT", "optional": true, diff --git a/package.json b/package.json index dcc8912b99..00ca7b707d 100644 --- a/package.json +++ b/package.json @@ -101,7 +101,7 @@ "stylelint-prettier": "^5.0.2" }, "optionalDependencies": { - "electron": "^32.2.1" + "electron": "^33.0.2" }, "engines": { "node": ">=20.9.0 <21 || 22 || >=23"