Skip to content

Commit

Permalink
Merge pull request #116 from KristjanESPERANTO/main
Browse files Browse the repository at this point in the history
Release 0.5.2 - Maintenance
  • Loading branch information
KristjanESPERANTO authored Feb 2, 2025
2 parents fb51858 + c6b3529 commit f14e5e9
Show file tree
Hide file tree
Showing 5 changed files with 1,408 additions and 503 deletions.
4 changes: 2 additions & 2 deletions .github/SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]>.
30 changes: 30 additions & 0 deletions .github/workflows/automated-tests.yaml
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 }}.'"
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.5.2] - Maintenance Release

- Update devDependencies
- Add GitHub workflow
- Check spelling also in .github directory
- Fix typo

## <a name="0_5_1"></a>[0.5.1] - Maintenance Release

- [chore] Add release script
Expand Down
Loading

0 comments on commit f14e5e9

Please sign in to comment.