Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected the rendering of custom JSON config components #2858

Merged
merged 12 commits into from
Dec 11, 2024
40 changes: 34 additions & 6 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ jobs:
node-version: 20.x

- name: 'Install'
run: |
npm i -f
run: npm i -f

- name: 'Install Adapter'
run: npm i -w packages/admin -f
Expand Down Expand Up @@ -111,14 +110,43 @@ jobs:
with:
node-version: 20.x

- name: Install Dependencies
run: npm run install-monorepo
- name: 'Install'
run: npm i -f

- name: 'Install Adapter'
run: npm i -w packages/admin -f

- name: 'Install FE'
run: |
cd packages/admin/src-admin
npm i -f

- name: 'Lint Backend'
run: npm run lint-backend -w packages/admin

- name: 'Build backend'
run: npm run build:backend -w packages/admin

- name: Build
run: NODE_OPTIONS=--max_old_space_size=8192 npm run build
- name: 'Build adapter-react-v5'
run: npm run build -w packages/adapter-react-v5

- name: 'Build JsonConfig'
run: npm run build -w packages/jsonConfig

- name: 'Build dm-gui-components'
run: npm run build -w packages/dm-gui-components

- name: Check TypeScript files
run: |
cd packages/admin/src-admin
npm run check-ts
# Wait till js-controller 7 types are available
continue-on-error: true

- name: 'Build'
run: |
npm run clean
NODE_OPTIONS=--max_old_space_size=4096 npm run build

- name: Run GUI tests
run: npm run test:gui -w packages/admin/
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ The icons may not be reused in other projects without the proper flaticon licens
<!--
### **WORK IN PROGRESS**
-->
### **WORK IN PROGRESS**

- (@GermanBluefox) Corrected the rendering of custom JSON config components
- (@GermanBluefox) Corrected the news dialog for multi-line messages

### 7.4.4 (2024-12-08)

- (@GermanBluefox) Showed value in object edit dialog
Expand Down
Loading
Loading