[docs][material-ui] Fix getting started with CSS variables in theme example #20320
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"' |