Skip to content

Commit

Permalink
Trying to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox committed Dec 11, 2024
1 parent 2984d17 commit b55fd09
Showing 1 changed file with 34 additions and 6 deletions.
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

0 comments on commit b55fd09

Please sign in to comment.