2020-12-29 13:51:02 -08:00
|
|
|
name: ❄️ Lint
|
|
|
|
|
|
|
|
on: [pull_request]
|
|
|
|
|
2021-12-17 10:50:57 -03:00
|
|
|
concurrency:
|
|
|
|
group: lint-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-12-29 13:51:02 -08:00
|
|
|
jobs:
|
|
|
|
yamllint:
|
|
|
|
name: 🍺 YAML
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: 🧹 YAML Lint
|
2021-12-21 14:14:25 -03:00
|
|
|
uses: github/super-linter@v4
|
2020-12-29 13:51:02 -08:00
|
|
|
env:
|
|
|
|
VALIDATE_YAML: true
|
|
|
|
FILTER_REGEX_INCLUDE: .*\.github/.*
|