Bump nextjs monorepo to ^16.0.1 #28343
  
    
      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
    
  
  
    
  | # 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: | |
| # should sync with ci.yml as a workaround to bypass github checks | |
| - master | |
| - next | |
| - v*.x | |
| pull_request: | |
| paths: | |
| # should sync with ci.yml as a workaround to bypass github checks | |
| - 'docs/**' | |
| permissions: {} | |
| jobs: | |
| continuous-releases: | |
| name: Continuous releases | |
| uses: mui/mui-public/.github/workflows/ci-base.yml@master | |
| 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"' |