Bumps [avto-dev/markdown-lint](https://github.com/avto-dev/markdown-lint) from v1.3.1 to v1.4.0. - [Release notes](https://github.com/avto-dev/markdown-lint/releases) - [Changelog](https://github.com/avto-dev/markdown-lint/blob/master/CHANGELOG.md) - [Commits](https://github.com/avto-dev/markdown-lint/compare/v1.3.1...6e6d4393411fbaae3c3aeee5661ba84a0352ed3b) Signed-off-by: dependabot[bot] <support@github.com>
32 lines
699 B
YAML
32 lines
699 B
YAML
name: Lint
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
# Run linter every week to catch regressions from external dependencies.
|
|
- cron: 17 9 * * 1
|
|
|
|
jobs:
|
|
|
|
lint-markdown:
|
|
name: Lint markdown
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.2
|
|
- uses: avto-dev/markdown-lint@v1.4.0
|
|
with:
|
|
config: '.github/markdown-lint.yaml'
|
|
args: './**/*.md'
|
|
|
|
lint-awesome:
|
|
name: Lint Awesome list
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.2
|
|
with:
|
|
# Fetch all history to please linter's age checks.
|
|
fetch-depth: 0
|
|
- run: |
|
|
npx awesome-lint --version
|
|
npx awesome-lint
|