Enhance error handling and loading state management in EditableTable β¦ #13805
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: coverage CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| if: github.repository == 'ant-design/pro-components' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - uses: pnpm/action-setup@v2 | |
| with: | |
| version: 10.13.1 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'pnpm' | |
| - run: pnpm install | |
| - run: pnpm run test:coverage --maxWorkers=5 | |
| env: | |
| CI: true | |
| PROGRESS: none | |
| NODE_ENV: test | |
| NODE_OPTIONS: --max_old_space_size=4096 | |
| - name: Upload results to Codecov | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |