[docs][material-ui][system] Edit "How to use components selector API" section to add about direct import #20363
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
# This workflow is a workaround for ci.yml to bypass the github checks | |
# | |
# Ref: https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks | |
name: CI Check | |
on: | |
push: | |
branches-ignore: | |
- 'renovate/**' | |
pull_request: | |
paths: | |
- 'docs/**' | |
- 'examples/**' | |
permissions: {} | |
jobs: | |
test-dev: | |
if: ${{ github.actor != 'l10nbot' }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
steps: | |
- run: 'echo "No build required"' |