[fix] corrigindo atalho para conteúdos de acessibilidade #265
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: Validação de Links | |
on: | |
push: | |
branches: [ main, workflow ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get all changed files | |
id: changed-files-yaml | |
uses: tj-actions/changed-files@v37 | |
with: | |
files_yaml: | | |
mdbook: | |
- Book/src/** | |
- name: Validate changed files | |
if: steps.changed-files-yaml.outputs.mdbook_any_changed == 'true' | |
run: | | |
make build | |
for file in ${{ steps.changed-files-yaml.outputs.mdbook_all_changed_files }}; do | |
make validate file=$file | |
done | |