dots/.github/workflows/yamlLint.yml
Yongmin Hong 0833c791ac
CI(GitHub Actions): add jsonlint, fix yamllint name
Summary:
Add JSONLint (not the jsonlint npm package) for json linting.
Also fix yamllint to correct job name and add `.vscode` stuff.

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

Test Plan: Just land it.

Reviewers: O1 revi & automations, revi

Reviewed By: O1 revi & automations, revi

Differential Revision: https://issuetracker.revi.xyz/D336
2024-06-16 17:41:33 +09:00

23 lines
383 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