name: markdownlint on: [push] # push: # paths: # - '**/*.md' # - '.markdownlint.json' # - '!third_party/**' jobs: mdlint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: markdownlint-cli uses: nosborn/github-action-markdown-cli@v1.1.1 with: files: '**/*.md' config_file: ".markdownlint.json"