Files
action-home-assistant/.github/workflows/lint.yaml
T
Renovate Bot b7123a7808
Lint / Prettier (push) Successful in 1m8s
Lint / Prettier (pull_request) Successful in 1m5s
Lint / yamllint (pull_request) Successful in 1m23s
Lint / yamllint (push) Successful in 1m26s
Test / Home Assistant Core Configuration Check (push) Failing after 6m13s
Test / Home Assistant Core Configuration Check (pull_request) Failing after 6m12s
⬆️ Update actions/checkout digest to 93cb6ef
2025-11-17 18:14:58 +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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- 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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- name: 🚀 Run Prettier
uses: creyD/prettier_action@v4.6
with:
prettier_options: --write **/*.{json,js,md,yaml}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}