-
Notifications
You must be signed in to change notification settings - Fork 7
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 #24 from Klizzy/issue-23-github-actions
#23 - added github actions for magic mirror test execution
- Loading branch information
Showing
12 changed files
with
8,041 additions
and
8,025 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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
{ | ||
"rules": { | ||
"indent": ["error", "tab"], | ||
"quotes": ["error", "double"], | ||
"max-len": ["error", 250], | ||
"curly": "error", | ||
"camelcase": ["error", {"properties": "never"}], | ||
"no-trailing-spaces": ["error"], | ||
"no-irregular-whitespace": ["error"] | ||
}, | ||
"env": { | ||
"browser": true, | ||
"node": true, | ||
"es6": true | ||
} | ||
"rules": { | ||
"indent": ["error", "tab"], | ||
"quotes": ["error", "double"], | ||
"max-len": ["error", 250], | ||
"curly": "error", | ||
"camelcase": ["error", { "properties": "never" }], | ||
"no-trailing-spaces": ["error"], | ||
"no-irregular-whitespace": ["error"] | ||
}, | ||
"env": { | ||
"browser": true, | ||
"node": true, | ||
"es6": true | ||
} | ||
} |
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,45 @@ | ||
name: "Run MagicMirror Automated Tests" | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 30 | ||
strategy: | ||
matrix: | ||
node-version: [14.x, 16.x, 18.x] | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: MichMich/MagicMirror | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: "npm" | ||
- name: Checkout MMM-Vrr | ||
uses: actions/checkout@v3 | ||
with: | ||
path: modules/MMM-Vrr | ||
- name: Install MMR-Vrr dependencies | ||
run: | | ||
cd modules/MMM-Vrr && npm install | ||
- name: Install dependencies and run tests | ||
run: | | ||
Xvfb :99 -screen 0 1024x768x16 & | ||
export DISPLAY=:99 | ||
npm run install-mm:dev | ||
touch css/custom.css | ||
npm run test:prettier | ||
npm run test:js | ||
npm run test:css | ||
npm run test |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"extends": "stylelint-config-standard", | ||
"font-family-name-quotes": "double-where-recommended", | ||
"block-no-empty": false | ||
"extends": "stylelint-config-standard", | ||
"font-family-name-quotes": "double-where-recommended", | ||
"block-no-empty": false | ||
} |
This file was deleted.
Oops, something went wrong.
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.