Test lint text action #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint Markdown | |
on: [pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Lint text action | |
id: lint | |
uses: bravmi/lint-text-action@master | |
with: | |
tool: 'proselint' # Change to 'write-good' if preferred | |
- name: Get the linting output | |
run: echo "${{ steps.lint.outputs.result }}" | |