Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/applications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- nextjs
- nextjs-ts
NODE:
- 20
- 24
OS:
- ubuntu-latest

Expand All @@ -42,6 +42,11 @@ jobs:
- name: Get sources
uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '24'

- name: Run npm install
env:
PUPPETEER_SKIP_DOWNLOAD: true
Expand Down Expand Up @@ -108,7 +113,7 @@ jobs:
- name: Set up Node.js and restore cache
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24
cache: 'npm'
cache-dependency-path: '**/package-lock.json'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
SRC_DIR: [true, false]
APP_ROUTER: [true, false]
NODE:
- 20
- 24
OS:
- ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version: '24'

- name: Run npm install
env:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
- name: Get sources
uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '24'

- name: Run npm install - root
run: npm ci --no-audit --no-fund

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/themebuilder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
NODE: [ 20 ]
NODE: [ 24 ]

runs-on: ubuntu-latest
name: ThemeBuilder
Expand Down
77 changes: 32 additions & 45 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"form-data@>=4.0.0 <4.0.4": ">=4.0.4",
"tar-fs@>=3.0.0 <3.1.1": ">=3.1.1",
"ws@>=8.0.0 <8.17.1": ">=8.17.1",
"cross-spawn": "7.0.6"
"cross-spawn": "7.0.6",
"js-yaml@>=4.0.0 <4.1.1": "4.1.1"
}
}
30 changes: 15 additions & 15 deletions packages/devextreme-cli/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/devextreme-schematics/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading