[material-ui][Table] Fixed scrollbar such that it start from the first row of the table in Sticky Header table #23029
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"' |