Skip to content

Commit

Permalink
#23 - added MMM-VRR module installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Klizzy committed Feb 8, 2023
1 parent 315dc37 commit 7f97708
Showing 1 changed file with 27 additions and 22 deletions.
49 changes: 27 additions & 22 deletions .github/workflows/automated-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: "Run MagicMirror Automated Tests"

on:
push:
branches: [master]
branches: [ master ]
pull_request:
branches: [master]
branches: [ master ]

permissions:
contents: read
Expand All @@ -15,24 +15,29 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
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: 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
- 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
run: 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

0 comments on commit 7f97708

Please sign in to comment.