support floors and labels, add default settings, use device id #20
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
--- | |
# Source: https://github.com/frenck/action-home-assistant | |
# | |
name: linters | |
# yamllint disable-line rule:truthy | |
on: | |
- push | |
jobs: | |
yamllint: | |
name: 🧹 YAML Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Check out repository | |
uses: actions/checkout@v4 | |
- name: 🚀 Run YAMLlint | |
uses: frenck/action-yamllint@v1 | |
remarklint: | |
name: 🧹 Remark Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Check out repository | |
uses: actions/checkout@v4 | |
- name: 🚀 Run Remark lint | |
uses: "docker://pipelinecomponents/remark-lint:latest" | |
continue-on-error: true | |
with: | |
args: "remark --no-stdout --color --frail --use preset-lint-recommended ." |