-
Notifications
You must be signed in to change notification settings - Fork 12
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 #55 from athombv/master
mmip
- Loading branch information
Showing
70 changed files
with
13,768 additions
and
1,460 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
|
||
indent_style = space | ||
indent_size = 2 | ||
|
||
trim_trailing_whitespace = true | ||
|
||
max_line_length = 100 | ||
insert_final_newline = true | ||
|
||
ij_javascript_use_double_quotes = false | ||
|
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,19 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
root: true, | ||
extends: ['eslint:recommended', 'prettier'], | ||
env: { | ||
node: true, | ||
es2023: true, | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['*.js', '*.mjs'], | ||
rules: { | ||
'no-unused-vars': ['warn', { args: 'none' }], | ||
}, | ||
}, | ||
], | ||
ignorePatterns: ['/examples/**', '/examples-v1/**', 'build'], | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,20 +13,34 @@ jobs: | |
name: Build & Deploy | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '12' | ||
|
||
# Build | ||
- name: Build | ||
run: npm run build | ||
|
||
# Deploy | ||
- name: Deploy To GitHub Pages | ||
uses: peaceiris/[email protected] | ||
with: | ||
personal_token: ${{ secrets.HOMEY_GITHUB_ACTIONS_BOT_PERSONAL_ACCESS_TOKEN }} | ||
publish_dir: ./build | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: webfactory/[email protected] | ||
env: | ||
SSH_KEY: ${{ secrets.SSH_KEY }} | ||
if: env.SSH_KEY != null | ||
with: | ||
ssh-private-key: ${{ env.SSH_KEY }} | ||
|
||
# Setup | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: '.nvmrc' | ||
registry-url: 'https://npm.pkg.github.com' | ||
|
||
- name: Install modules | ||
run: npm clean-install --audit=false | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.HOMEY_GITHUB_ACTIONS_BOT_PERSONAL_ACCESS_TOKEN }} | ||
|
||
# Build | ||
- name: Build | ||
run: npm run build | ||
|
||
# Deploy | ||
- name: Deploy To GitHub Pages | ||
uses: peaceiris/[email protected] | ||
with: | ||
personal_token: ${{ secrets.HOMEY_GITHUB_ACTIONS_BOT_PERSONAL_ACCESS_TOKEN }} | ||
publish_dir: ./build |
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,7 +1,11 @@ | ||
name: Lint | ||
|
||
# Optional secrets: | ||
# - SSH_KEY: if `npm ci` needs to install private npm packages | ||
# Version: 2.0.1 | ||
# Modified: Yes | ||
# | ||
# Secrets: | ||
# - HOMEY_GITHUB_ACTIONS_BOT_PERSONAL_ACCESS_TOKEN | ||
# - SSH_KEY | ||
|
||
# GitHub repo configuration: | ||
# 1. If you have protected branches, go to Branches > edit protected branch > enable 'Require status checks to pass before | ||
|
@@ -12,33 +16,38 @@ name: Lint | |
# Defines the trigger for this action (e.g. [pull_request, push]) | ||
# For more information see: https://help.github.com/en/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows#about-workflow-events) | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
- develop | ||
|
||
jobs: | ||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Checks out the current repository. | ||
- uses: actions/checkout@v2 | ||
|
||
# Configures a Node.js environment. | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: '12' | ||
- uses: actions/checkout@v4 | ||
|
||
# Set SSH key | ||
- uses: webfactory/[email protected] | ||
- uses: webfactory/[email protected] | ||
env: | ||
SSH_KEY: ${{ secrets.SSH_KEY }} | ||
if: env.SSH_KEY != null | ||
with: | ||
ssh-private-key: ${{ env.SSH_KEY }} | ||
|
||
# Run `npm ci` to re-create your local environment (make sure to commit your package-lock.json!). | ||
# Finally run `npm run lint` (make sure you have defined a lint command in package.json e.g. "lint": "eslint ."). | ||
- run: npm ci | ||
- run: npm run lint | ||
# Setup | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: '.nvmrc' | ||
registry-url: 'https://npm.pkg.github.com' | ||
|
||
- name: Install modules | ||
run: npm clean-install --audit=false | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.HOMEY_GITHUB_ACTIONS_BOT_PERSONAL_ACCESS_TOKEN }} | ||
|
||
- name: Lint | ||
run: npm run lint |
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
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
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,24 @@ | ||
{ | ||
"deprecated": true, | ||
"title": { | ||
"en": "Run code", | ||
"nl": "Voer code uit" | ||
}, | ||
"titleFormatted": { | ||
"en": "Run [[code]]", | ||
"nl": "Voer [[code]] uit" | ||
}, | ||
"advanced": true, | ||
"args": [ | ||
{ | ||
"name": "code", | ||
"type": "code", | ||
"language": "homeyscript", | ||
"title": { | ||
"en": "Code", | ||
"nl": "Code" | ||
}, | ||
"value": "// My Code" | ||
} | ||
] | ||
} |
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,33 @@ | ||
{ | ||
"deprecated": true, | ||
"title": { | ||
"en": "Run code", | ||
"nl": "Voer code uit" | ||
}, | ||
"titleFormatted": { | ||
"en": "Run [[code]] and return Yes/No-tag", | ||
"nl": "Voer [[code]] uit en return Ja/Nee-tag" | ||
}, | ||
"tokens": [ | ||
{ | ||
"name": "boolean", | ||
"type": "boolean", | ||
"title": { | ||
"en": "Result", | ||
"nl": "Resultaat" | ||
} | ||
} | ||
], | ||
"args": [ | ||
{ | ||
"name": "code", | ||
"type": "code", | ||
"language": "homeyscript", | ||
"title": { | ||
"en": "Code", | ||
"nl": "Code" | ||
}, | ||
"value": "// My Code\n\nreturn 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,32 @@ | ||
{ | ||
"title": { | ||
"en": "Run code", | ||
"nl": "Voer code uit" | ||
}, | ||
"titleFormatted": { | ||
"en": "Run [[code]] and return Yes/No-tag", | ||
"nl": "Voer [[code]] uit en return Ja/Nee-tag" | ||
}, | ||
"tokens": [ | ||
{ | ||
"name": "boolean", | ||
"type": "boolean", | ||
"title": { | ||
"en": "Result", | ||
"nl": "Resultaat" | ||
} | ||
} | ||
], | ||
"args": [ | ||
{ | ||
"name": "code", | ||
"type": "code", | ||
"language": "homeyscript", | ||
"title": { | ||
"en": "Code", | ||
"nl": "Code" | ||
}, | ||
"value": "// My Code\n\nreturn 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,33 @@ | ||
{ | ||
"deprecated": true, | ||
"title": { | ||
"en": "Run code", | ||
"nl": "Voer code uit" | ||
}, | ||
"titleFormatted": { | ||
"en": "Run [[code]] and return Number-tag", | ||
"nl": "Voer [[code]] uit en return Nummer-tag" | ||
}, | ||
"tokens": [ | ||
{ | ||
"name": "number", | ||
"type": "number", | ||
"title": { | ||
"en": "Result", | ||
"nl": "Resultaat" | ||
} | ||
} | ||
], | ||
"args": [ | ||
{ | ||
"name": "code", | ||
"type": "code", | ||
"language": "homeyscript", | ||
"title": { | ||
"en": "Code", | ||
"nl": "Code" | ||
}, | ||
"value": "// My Code\n\nreturn 1;" | ||
} | ||
] | ||
} |
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,32 @@ | ||
{ | ||
"title": { | ||
"en": "Run code", | ||
"nl": "Voer code uit" | ||
}, | ||
"titleFormatted": { | ||
"en": "Run [[code]] and return Number-tag", | ||
"nl": "Voer [[code]] uit en return Nummer-tag" | ||
}, | ||
"tokens": [ | ||
{ | ||
"name": "number", | ||
"type": "number", | ||
"title": { | ||
"en": "Result", | ||
"nl": "Resultaat" | ||
} | ||
} | ||
], | ||
"args": [ | ||
{ | ||
"name": "code", | ||
"type": "code", | ||
"language": "homeyscript", | ||
"title": { | ||
"en": "Code", | ||
"nl": "Code" | ||
}, | ||
"value": "// My Code\n\nreturn 1;" | ||
} | ||
] | ||
} |
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,33 @@ | ||
{ | ||
"deprecated": true, | ||
"title": { | ||
"en": "Run code", | ||
"nl": "Voer code uit" | ||
}, | ||
"titleFormatted": { | ||
"en": "Run [[code]] and return Text-tag", | ||
"nl": "Voer [[code]] uit en return Tekst-tag" | ||
}, | ||
"tokens": [ | ||
{ | ||
"name": "string", | ||
"type": "string", | ||
"title": { | ||
"en": "Result", | ||
"nl": "Resultaat" | ||
} | ||
} | ||
], | ||
"args": [ | ||
{ | ||
"name": "code", | ||
"type": "code", | ||
"language": "homeyscript", | ||
"title": { | ||
"en": "Code", | ||
"nl": "Code" | ||
}, | ||
"value": "// My Code\n\nreturn 'Hello World!';" | ||
} | ||
] | ||
} |
Oops, something went wrong.