Yongmin Hong
0833c791ac
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
23 lines
383 B
YAML
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
|