update actions, readme #16
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/[email protected] | |
- name: 🚀 Run YAMLlint | |
uses: frenck/[email protected] | |
remarklint: | |
name: 🧹 Remark Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Check out repository | |
uses: actions/[email protected] | |
- 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 ." |