Skip to content

Commit a0797f0

Browse files
authored
Fix tests with updated package-lock in devextreme (#1216)
1 parent 88011e2 commit a0797f0

File tree

3 files changed

+22
-11
lines changed

3 files changed

+22
-11
lines changed

.github/workflows/tests.yml

+20-10
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ jobs:
2626
- name: Clone devextreme repo
2727
run: test -d ../devextreme || git clone -b 21_2 https://github.com/devexpress/devextreme ../devextreme
2828

29+
- name: Use Node.js 15
30+
uses: actions/setup-node@v2
31+
with:
32+
node-version: '15'
33+
2934
- name: Install packages in devextreme repo
3035
run: |
3136
cd ../devextreme
@@ -34,7 +39,12 @@ jobs:
3439
- name: Build devextreme repo
3540
run: |
3641
cd ../devextreme
37-
npm run build-dist
42+
npm run build-npm-devextreme
43+
44+
- name: Use Node.js 14
45+
uses: actions/setup-node@v2
46+
with:
47+
node-version: '14'
3848

3949
- name: Install devextreme package
4050
run: |
@@ -63,15 +73,15 @@ jobs:
6373
- name: Install Angular latest
6474
run: |
6575
npx lerna clean --yes
66-
npx lerna add @angular/animations@latest packages/devextreme-angular --dev --exact --no-bootstrap
67-
npx lerna add @angular/core@latest packages/devextreme-angular --dev --exact --no-bootstrap
68-
npx lerna add @angular/common@latest packages/devextreme-angular --dev --exact --no-bootstrap
69-
npx lerna add @angular/compiler@latest packages/devextreme-angular --dev --exact --no-bootstrap
70-
npx lerna add @angular/forms@latest packages/devextreme-angular --dev --exact --no-bootstrap
71-
npx lerna add @angular/platform-browser@latest packages/devextreme-angular --dev --exact --no-bootstrap
72-
npx lerna add @angular/platform-server@latest packages/devextreme-angular --dev --exact --no-bootstrap
73-
npx lerna add @angular/platform-browser-dynamic@latest packages/devextreme-angular --dev --exact --no-bootstrap
74-
npx lerna add @angular/compiler-cli@latest packages/devextreme-angular --dev --exact --no-bootstrap
76+
npx lerna add @angular/animations@12 packages/devextreme-angular --dev --exact --no-bootstrap
77+
npx lerna add @angular/core@12 packages/devextreme-angular --dev --exact --no-bootstrap
78+
npx lerna add @angular/common@12 packages/devextreme-angular --dev --exact --no-bootstrap
79+
npx lerna add @angular/compiler@12 packages/devextreme-angular --dev --exact --no-bootstrap
80+
npx lerna add @angular/forms@12 packages/devextreme-angular --dev --exact --no-bootstrap
81+
npx lerna add @angular/platform-browser@12 packages/devextreme-angular --dev --exact --no-bootstrap
82+
npx lerna add @angular/platform-server@12 packages/devextreme-angular --dev --exact --no-bootstrap
83+
npx lerna add @angular/platform-browser-dynamic@12 packages/devextreme-angular --dev --exact --no-bootstrap
84+
npx lerna add @angular/compiler-cli@12 packages/devextreme-angular --dev --exact --no-bootstrap
7585
npx lerna bootstrap --no-ci
7686
7787
- name: Build tests with Angular latest

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
## 18.2.5 (2019-01-24)
23

34
### Features

packages/devextreme-angular/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"url": "https://github.com/DevExpress/devextreme-angular.git"
88
},
99
"scripts": {
10-
"gulp": "npx --node-arg=--max_old_space_size=8048 gulp",
10+
"gulp": "npx --node-arg=--max_old_space_size=8192 gulp",
1111
"build": "npm run gulp -- build",
1212
"test": "npm run gulp -- test",
1313
"pack": "npm run gulp -- npm.pack",

0 commit comments

Comments
 (0)