chore: canary fixture updates #216
Workflow file for this run
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: Vale | |
on: | |
pull_request: | |
jobs: | |
vale: | |
name: runner / vale | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v45 | |
- name: List changed fiels | |
run: | | |
echo "Files changed:" | |
echo "${{ steps.changed-files.outputs.all_changed_files }}" | tr ' ' '\n' | |
- name: Run Vale on changed files | |
uses: errata-ai/vale-action@reviewdog | |
with: | |
files: ${{ steps.changed-files.outputs.all_changed_files }} | |
separator: " " | |
reporter: github-pr-check | |
fail_on_error: true |