Files
action-home-assistant/.github/workflows/lint.yaml
T
Renovate Bot b8d1ac3885
Test / Home Assistant Core Configuration Check (push) Failing after 31m7s
Test / Home Assistant Core Configuration Check (pull_request) Failing after 32m1s
Lint / Prettier (push) Failing after 33m9s
Lint / yamllint (push) Failing after 34m22s
Lint / Prettier (pull_request) Failing after 35m16s
Lint / yamllint (pull_request) Failing after 36m20s
⬆️ Update actions/checkout action to v6
2026-06-13 16:34:16 +00:00

29 lines
777 B
YAML

---
name: Lint
# yamllint disable-line rule:truthy
on: [push, pull_request, workflow_dispatch]
jobs:
yamllint:
name: yamllint
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: 🚀 Run yamllint
uses: frenck/action-yamllint@v1.5
prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: 🚀 Run Prettier
uses: creyD/prettier_action@v4.6
with:
prettier_options: --write **/*.{json,js,md,yaml}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}