fix(table): 修复 EditableProTable 实时编辑表格存在 name 属性且有分页的时候,渲染的数据总是为第一页 #6895
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
name: Build CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
if: github.repository == 'ant-design/pro-components' | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: [16.x] | |
os: [ubuntu-latest] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8.7.5 | |
- run: pnpm install | |
- run: pnpm run build | |
env: | |
PRO_COMPONENTS_CI: CI | |
- run: pnpm run lint |