forked from barnabycolby/MMM-Carousel
-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #116 from KristjanESPERANTO/main
Release 0.5.2 - Maintenance
- Loading branch information
Showing
5 changed files
with
1,408 additions
and
503 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,8 @@ If you experience errors with this module, or have a suggestion for improvements | |
|
||
- The configuration section for this module | ||
- The configuration section for any affected modules | ||
- Relavent logs: | ||
- Relevant logs: | ||
- From the console or `~/.pm2/logs/` | ||
- From the web console using DevTools (<key>Ctrl</key>+<key>Shift</key>+<key>I</key>) | ||
|
||
This information should be posted directly in the Issue, or in a Gist (<https://gist.github.com>). If you are not comfortable posting this in a public place, you may send a private chat on the MagicMirror² forum, or e-mail the relavent info to <[email protected]>. | ||
This information should be posted directly in the Issue, or in a Gist (<https://gist.github.com>). If you are not comfortable posting this in a public place, you may send a private chat on the MagicMirror² forum, or e-mail the relevant info to <[email protected]>. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Automated Tests | ||
on: | ||
push: | ||
branches: [master, develop] | ||
pull_request: | ||
branches: [master, develop] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
code-quality: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
- run: "echo '🚀 Starting code quality checks for ${{ github.repository }} (ref: ${{ github.ref }})'" | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 22 | ||
cache: npm | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Check spelling | ||
run: npm run test:spelling | ||
- name: Check linting | ||
run: npm run lint | ||
- run: "echo '✨ Code quality checks completed with status: ${{ job.status }}.'" |
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
Oops, something went wrong.