Fix {x:Bind} enum converter targetType null issue #2866
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: Check Links | |
| on: | |
| pull_request: | |
| jobs: | |
| link-check: | |
| runs-on: ubuntu-latest | |
| name: Check Docs links | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - name: Import External Doc | |
| run: pwsh ./doc/import_external_docs.ps1 | |
| - name: Move external inside Doc dir | |
| run : mv ./articles/external ./doc/articles/ | |
| - name: Move Hot Design doc inside Doc dir | |
| run: mv "./articles/studio/Hot Design" ./doc/articles/studio | |
| - name: Check links | |
| uses: lycheeverse/[email protected] | |
| with: | |
| fail: false | |
| args: > | |
| --verbose | |
| --no-progress | |
| --accept 200..=204,429 | |
| ./doc/**/*.md | |