feat(rogue): add a spelling mistake #3
This file contains hidden or 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: "vale" | |
| on: [pull_request] | |
| jobs: | |
| vale: | |
| name: vale | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Get changed files | |
| id: changed-files | |
| uses: tj-actions/changed-files@v46 | |
| with: | |
| files: | | |
| **.rst | |
| **.md | |
| - name: Install docutils | |
| run: sudo apt-get install -y docutils | |
| - name: Run vale checks | |
| uses: errata-ai/[email protected] | |
| with: | |
| fail_on_error: true | |
| files: ${{ steps.changed-files.outputs.all_changed_files }} |