|
26 | 26 | - name: Clone devextreme repo
|
27 | 27 | run: test -d ../devextreme || git clone -b 21_2 https://github.com/devexpress/devextreme ../devextreme
|
28 | 28 |
|
| 29 | + - name: Use Node.js 15 |
| 30 | + uses: actions/setup-node@v2 |
| 31 | + with: |
| 32 | + node-version: '15' |
| 33 | + |
29 | 34 | - name: Install packages in devextreme repo
|
30 | 35 | run: |
|
31 | 36 | cd ../devextreme
|
|
34 | 39 | - name: Build devextreme repo
|
35 | 40 | run: |
|
36 | 41 | 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' |
38 | 48 |
|
39 | 49 | - name: Install devextreme package
|
40 | 50 | run: |
|
@@ -63,15 +73,15 @@ jobs:
|
63 | 73 | - name: Install Angular latest
|
64 | 74 | run: |
|
65 | 75 | 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 |
75 | 85 | npx lerna bootstrap --no-ci
|
76 | 86 |
|
77 | 87 | - name: Build tests with Angular latest
|
|
0 commit comments