Skip to content

Commit

Permalink
Clean up for github actions, v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
parnic committed Sep 3, 2023
1 parent c55b948 commit a4c97c6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
"env": {
"browser": true,
"node": true,
"es6": true
"es2017": true
},
"parserOptions": {
"ecmaVersion": 8
}
}
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

1. Navigate into your MagicMirror's `modules` folder and execute `git clone https://github.com/parnic/MMM-Ring.git`
2. `cd MMM-Ring`
3. Execute `npm install --production` to install the node dependencies.
3. Execute `npm install --production` to install the node dependencies. Note: Node 18+ is required.
4. Execute `npm run auth` and follow the instructions. Copy the resulting refresh token you receive for the config in the next step.
5. Add the module inside `config.js` placing it where you prefer. Make sure to set the refreshToken property to the one given by the previous step.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mmm-ring",
"version": "0.0.1",
"version": "1.0.0",
"description": "Show status from Ring alarms and control armed status",
"main": "MMM-Ring.js",
"author": "parnic",
Expand Down

0 comments on commit a4c97c6

Please sign in to comment.