Skip to content

Commit

Permalink
Merge pull request #1087 from keesschollaart81/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck authored Mar 23, 2021
2 parents c864acc + eba4b5f commit b293c08
Show file tree
Hide file tree
Showing 28 changed files with 1,398 additions and 780 deletions.
3 changes: 1 addition & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ module.exports = {
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:wc/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended",
"prettier",
],
parser: "@typescript-eslint/parser",
parserOptions: {
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/1. yaml-error-or-warning.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ labels: 'yaml'
2. Is a HA scheme error?
Feel free to fix this yourself, it's quite easy, HowTo here:
https://github.com/keesschollaart81/vscode-home-assistant/wiki/HowTo:-Update-the-schemas
https://github.com/keesschollaart81/vscode-home-assistant/wiki/HowTo:-Update-the-schema's
-->

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/github-actions-language-service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/[email protected]

- name: 🏗 Set up NodeJS
uses: actions/[email protected].4
uses: actions/[email protected].5
with:
node-version: "14"

Expand All @@ -32,6 +32,10 @@ jobs:
working-directory: src/language-service
run: npm run lint

- name: 🚀 Build Schema
working-directory: src/language-service
run: npm run schema

- name: 🚀 Run Compile
working-directory: src/language-service
run: npm run compile
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/github-actions-vscode-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/[email protected]

- name: 🏗 Set up NodeJS
uses: actions/[email protected].4
uses: actions/[email protected].5
with:
node-version: "14"

Expand All @@ -22,6 +22,9 @@ jobs:
- name: 🚀 Run Linter
run: npm run lint

- name: 🚀 Build Schema
run: npm run schema

- name: 🚀 Run Compile
run: npm run compile

Expand Down
1 change: 1 addition & 0 deletions .husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm test
Loading

0 comments on commit b293c08

Please sign in to comment.