Skip to content

Commit 86703be

Browse files
update devextreme to 25.1.3 + fix create-vue version (#973)
* update devextreme to 25.1.3 + fix create-vue version * update engine in package.json * try satisfy vite 7 linter * improve file names * bump node in GHA * remove no-package-lock * try skip puppeteer
1 parent 4ab91a7 commit 86703be

File tree

29 files changed

+933
-81
lines changed

29 files changed

+933
-81
lines changed

.github/workflows/applications.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- nextjs
2727
- nextjs-ts
2828
NODE:
29-
- 18
29+
- 20
3030
OS:
3131
- ubuntu-latest
3232

@@ -108,7 +108,7 @@ jobs:
108108
- name: Set up Node.js and restore cache
109109
uses: actions/setup-node@v4
110110
with:
111-
node-version: 18
111+
node-version: 20
112112
cache: 'npm'
113113
cache-dependency-path: '**/package-lock.json'
114114

.github/workflows/check-nextjs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
SRC_DIR: [true, false]
1515
APP_ROUTER: [true, false]
1616
NODE:
17-
- 18
17+
- 20
1818
OS:
1919
- ubuntu-latest
2020

.github/workflows/lint.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ jobs:
1919
- name: Use Node.js
2020
uses: actions/setup-node@v4
2121
with:
22-
node-version: '18'
22+
node-version: '20'
2323

2424
- name: Run npm install
25+
env:
26+
PUPPETEER_SKIP_DOWNLOAD: true
2527
run: npm install --no-package-lock --no-audit --no-fund
2628

2729
- name: Run tests

.github/workflows/themebuilder.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
NODE: [ 18 ]
10+
NODE: [ 20 ]
1111

1212
runs-on: ubuntu-latest
1313
name: ThemeBuilder
@@ -33,6 +33,8 @@ jobs:
3333
themebuilder-${{ runner.os }}-node-
3434
3535
- name: Run npm install
36+
env:
37+
PUPPETEER_SKIP_DOWNLOAD: true
3638
run: npm install --no-package-lock --no-audit --no-fund
3739

3840
- name: Run tests

0 commit comments

Comments
 (0)