Skip to content
Open
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
5 changes: 5 additions & 0 deletions .github/actions/run-qunit-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ runs:
with:
run_install: false

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

- name: Get pnpm store directory
shell: bash
run: |
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/build_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- uses: pnpm/action-setup@v4
with:
Expand Down Expand Up @@ -87,6 +87,11 @@ jobs:
- name: Get sources
uses: actions/checkout@v4

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

- uses: pnpm/action-setup@v4
with:
run_install: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.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-file: '.node-version'

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

Copilot AI Apr 29, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Switching workflows from node-version: ... to node-version-file: '.node-version' may break automated Node version updates via Renovate. The current .github/renovate.json custom manager only matches node-version: in workflow YAML, so Renovate will no longer detect/update the Node version after this change. Consider updating Renovate config to track .node-version (or to also match node-version-file) so Node updates remain automated.

Suggested change
node-version-file: '.node-version'
node-version: 20.x

Copilot uses AI. Check for mistakes.

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

- uses: pnpm/action-setup@v4
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- uses: pnpm/action-setup@v4
with:
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- uses: pnpm/action-setup@v4
with:
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- uses: pnpm/action-setup@v4
with:
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- uses: pnpm/action-setup@v4
with:
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- uses: pnpm/action-setup@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/packages_publishing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Set up nodejs
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- uses: pnpm/action-setup@v4
with:
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- uses: pnpm/action-setup@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/playgrounds_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- uses: pnpm/action-setup@v4
with:
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- name: Download artifacts
uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-storybook-deploy-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
if: inputs.action == 'deploy'
uses: actions/setup-node@v4
with:
node-version: "20"
node-version-file: '.node-version'

- name: Setup pnpm
if: inputs.action == 'deploy'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- uses: pnpm/action-setup@v4
with:
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- name: Download devextreme sources
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

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

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

- uses: pnpm/action-setup@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-testcafe-on-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'
Comment thread
dmlvr marked this conversation as resolved.

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

- uses: pnpm/action-setup@v4
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/testcafe_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- uses: pnpm/action-setup@v4
with:
Expand Down Expand Up @@ -157,10 +157,10 @@ jobs:
# with:
# chrome-version: '145.0.7632.67'

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

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

- uses: pnpm/action-setup@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ts_declarations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- uses: pnpm/action-setup@v4
with:
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

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

- uses: pnpm/action-setup@v4
with:
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/visual-tests-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- uses: pnpm/action-setup@v4
with:
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- name: Download devextreme sources
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -281,7 +281,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- uses: pnpm/action-setup@v4
with:
Expand Down Expand Up @@ -351,7 +351,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- uses: pnpm/action-setup@v4
with:
Expand Down Expand Up @@ -442,7 +442,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- name: Download devextreme sources
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -533,7 +533,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- name: Download devextreme sources
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -636,7 +636,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- uses: pnpm/action-setup@v4
with:
Expand Down Expand Up @@ -805,7 +805,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- name: Download devextreme sources
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -933,7 +933,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- name: Download devextreme sources
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -1113,7 +1113,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- uses: pnpm/action-setup@v4
with:
Expand Down Expand Up @@ -1185,7 +1185,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- uses: pnpm/action-setup@v4
with:
Expand Down Expand Up @@ -1242,7 +1242,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version-file: '.node-version'

- name: Download all CSP reports
uses: actions/download-artifact@v4
Expand Down
Loading
Loading