fix(formily grid): add requestAnimationFrame to smooth grid digest (#… #2135
  
    
      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: Node CI | |
| on: | |
| push: | |
| branches: | |
| - formily_next | |
| pull_request: | |
| branches: | |
| - formily_next | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| if: contains(github.event.head_commit.message, 'chore(versions)') == false | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: 16 | |
| - run: yarn -v | |
| - run: yarn --ignore-engines | |
| - name: ESlint | |
| uses: reviewdog/action-eslint@v1 | |
| with: | |
| reporter: github-check | |
| eslint_flags: '.' | |
| - run: yarn build | |
| - run: yarn test:prod | |
| env: | |
| CI: true | |
| HEADLESS: false | |
| PROGRESS: none | |
| NODE_ENV: test | |
| NODE_OPTIONS: --max_old_space_size=4096 |