Remove client-engine MTP CI overrides #12523
Workflow file for this run
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 Starlight Directories | |
| # Cancel older jobs on PRs when new changes are pushed | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, edited] | |
| jobs: | |
| check-typo-directory: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Check for StarLight folders | |
| run: | | |
| bad_paths="$(find . -path './.git' -prune -o -type d -name '*StarLight*' -print)" | |
| if [ -n "$bad_paths" ]; then | |
| echo "::error::Found folders using StarLight. They should use Starlight." | |
| echo "$bad_paths" | |
| exit 1 | |
| else | |
| echo "No StarLight folders found." | |
| fi | |
| - name: Validate _Starlight namespaces | |
| run: python3 Tools/_Starlight/check_starlight_namespaces.py |