Add legacy-aws default plugin reconcile e2e test. (#1568) #560
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: docs-actions | |
| on: | |
| push: | |
| paths: | |
| - '**/**.md' | |
| - '.github/workflows/docs-actions.yml' | |
| pull_request: | |
| paths: | |
| - '**/**.md' | |
| - '.github/workflows/docs-actions.yml' | |
| jobs: | |
| link-checker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Link Checker | |
| uses: lycheeverse/[email protected] | |
| with: | |
| args: --verbose --no-progress --exclude .*dog8code\.com.* --exclude https://quay.io/cnr -- docs/**/*.md *.md | |
| - run: if grep 'Errors in' ./lychee/out.md; then fail; fi |