https://github.com/mdb/yamllint-github-action
A GitHub Action that runs the Node.js version of the yamllint CLI against all *.yml files in a repo
https://github.com/mdb/yamllint-github-action
Last synced: 3 months ago
JSON representation
A GitHub Action that runs the Node.js version of the yamllint CLI against all *.yml files in a repo
- Host: GitHub
- URL: https://github.com/mdb/yamllint-github-action
- Owner: mdb
- License: mit
- Created: 2019-09-28T11:49:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-04T10:20:03.000Z (over 6 years ago)
- Last Synced: 2025-05-27T03:05:55.370Z (about 1 year ago)
- Language: Dockerfile
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/mdb/yamllint-github-action/actions)
# yamllint-github-action
A GitHub Action that runs the Node.js version of the [yamllint](https://www.npmjs.com/package/yaml-lint) CLI to lint all `*.yml` files in a repo.
## Usage
```yml
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: mdb/yamllint-github-action@master
```