sandbox/.github/workflows/yamlLint.yml
Yongmin Hong b1740bd0cd
CI(.arclint): use Pinterest Arcanist Linter
Summary:
Thanks pinterest!

Also fix some GitHub Actions error.

Signed-off-by: Yongmin Hong <revi@omglol.email>

Test Plan: run `arc lint`?

Reviewers: O1 revi & automations, revi

Reviewed By: O1 revi & automations, revi

Differential Revision: https://issuetracker.revi.xyz/D325
2024-06-16 14:45:56 +09:00

23 lines
381 B
YAML

---
name: YAML Lint
on:
push:
paths:
- '**.yml'
- '**.yaml'
- '.yamllint'
pull_request:
paths:
- '**.yml'
- '**.yaml'
- '.yamllint'
workflow_dispatch:
jobs:
yaml-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: yaml-lint
uses: ibiqlik/action-yamllint@v3