44 lines
959 B
YAML
44 lines
959 B
YAML
---
|
|
name: Addons lint
|
|
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
find:
|
|
name: Find add-ons
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
addons: ${{ steps.addons.outputs.addons_list }}
|
|
steps:
|
|
- name: ⤵️ Check out code from GitHub
|
|
uses: actions/checkout@v3.5.3
|
|
|
|
- name: 🔍 Find add-on directories
|
|
id: addons
|
|
uses: home-assistant/actions/helpers/find-addons@master
|
|
|
|
lint:
|
|
name: Lint add-on ${{ matrix.path }}
|
|
runs-on: ubuntu-latest
|
|
needs: find
|
|
strategy:
|
|
matrix:
|
|
path: ${{ fromJson(needs.find.outputs.addons) }}
|
|
steps:
|
|
- name: ⤵️ Check out code from GitHub
|
|
uses: actions/checkout@v3.5.3
|
|
|
|
- name: 🚀 Run Home Assistant Add-on Lint
|
|
uses: frenck/action-addon-linter@v2.13
|
|
with:
|
|
path: "./${{ matrix.path }}"
|