Bump cron-parser from 5.0.1 to 5.0.3 in /EXTs/EXT-Screen #85
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "MagicMirror² (develop) and electron-rebuild Testing" | |
on: [pull_request] | |
jobs: | |
build: | |
name: Test electron-rebuild | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [23.x] | |
steps: | |
- name: "Use Node.js ${{ matrix.node-version }}" | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
check-latest: true | |
- name: Checkout MagicMirror² (develop) | |
uses: actions/checkout@v4 | |
with: | |
repository: MagicMirrorOrg/MagicMirror | |
ref: develop | |
- name: Install MagicMirror² | |
run: npm install | |
- name: Install Electron v34@latest | |
run: npm install electron@34 | |
- name: Checkout MMM-Bugsounet | |
uses: actions/checkout@v4 | |
with: | |
path: MagicMirror/modules/MMM-Bugsounet | |
- name: Install MMM-Bugsounet | |
run: npm run setup | |
working-directory: MagicMirror/modules/MMM-Bugsounet | |
- name: Install EXT-Detector | |
run: npm run setup:EXT-Detector | |
working-directory: MagicMirror/modules/MMM-Bugsounet | |
continue-on-error: false | |
- name: Install EXT-Screen | |
run: npm run setup:EXT-Screen | |
working-directory: MagicMirror/modules/MMM-Bugsounet | |
continue-on-error: false | |
- name: Install EXT-Website | |
run: npm run setup:EXT-Website | |
working-directory: MagicMirror/modules/MMM-Bugsounet | |
continue-on-error: false |