DataGrid - "Cannot read properties of undefined (reading 'values')" error occurs on adding a row to the second page if initial row values are specified in onInitNewRow (T1274123) #7452
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 and pack DevExtreme npm packages | |
on: | |
pull_request: | |
push: | |
branches: [24_1] | |
jobs: | |
build: | |
runs-on: devextreme-shr2 | |
steps: | |
- name: Get sources | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: npm install | |
- name: Build npm packages | |
run: npm run all:build | |
- name: Copy build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: devextreme-npm-packages | |
path: | | |
artifacts/npm/*.tgz | |
retention-days: 1 |