Skip to content
Draft
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: 2 additions & 3 deletions .devops/templates/tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,9 @@ steps:
# 👉 NOTE:
# - we can use only versions that ship with container, otherwise we will run into nodejs installation issues.
# - as 1es bumps those versions within container automatically we need to use `<major>.x` to not run into issues once they bump the versions.
# - `checkLatest: true` is required because some dependencies (e.g. @microsoft/fast-build) require node >=22.18.0,
# while the 1ES container may still ship an older 22.x (e.g. 22.14.0). This forces the task to install the latest 22.x.
# - `checkLatest: true` forces the task to install the latest 24.x in case the 1ES container ships an older 24.x patch release.
# https://github.com/actions/runner-images/blob/ubuntu20/20230924.1/images/linux/Ubuntu2004-Readme.md#nodejs
version: '22.x'
version: '24.x'
checkLatest: true
displayName: 'Install Node.js'
retryCountOnTaskFailure: 1
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/run-publish-vr-screenshot/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ inputs:
runs:
using: 'composite'
steps:
- uses: nrwl/nx-set-shas@v4
- uses: nrwl/nx-set-shas@afb73a62d26e41464e9254689e1fd6122ee683c1 # v5.0.1
with:
main-branch-name: 'master'

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
cache: 'yarn'
node-version: '20'
node-version: '24'

- run: yarn install --frozen-lockfile
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/instructions/copilot.instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This is a large Nx monorepo with the following key characteristics:

- **Package Manager**: Yarn v1 with strict dependency management
- **Build System**: Nx workspace with custom plugins (`tools/workspace-plugin/`)
- **Node.js Versions**: ^22.0.0
- **Node.js Versions**: ^22.0.0 || ^24.0.0 (CI runs on Node.js 24 — the current Active LTS)
- **Languages**: TypeScript (strict mode), React, Web Components
- **Testing**: Jest, Cypress (E2E), Storybook + StoryWright (Visual Regression), SSR testing (test-ssr)
- **Documentation**: Storybook sites, api.md files via API Extractor
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bundle-size-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- uses: actions/setup-node@v6
with:
cache: 'yarn'
node-version: '22'
node-version: '24'

- run: yarn install --frozen-lockfile

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bundle-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ jobs:
fetch-depth: 0

- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@826660b82addbef3abff5fa871492ebad618c9e1 # v4.3.3
uses: nrwl/nx-set-shas@afb73a62d26e41464e9254689e1fd6122ee683c1 # v5.0.1
with:
main-branch-name: 'master'

- uses: actions/setup-node@v6
with:
cache: 'yarn'
node-version: '22'
node-version: '24'

- run: echo number of CPUs "$(getconf _NPROCESSORS_ONLN)"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/check-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- uses: actions/setup-node@v6
with:
node-version: '22'
node-version: '24'
cache: 'yarn'

- uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46.0.5
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:

- uses: actions/setup-node@v6
with:
node-version: 22.x
node-version: 24.x

- uses: actions/github-script@v8
with:
Expand All @@ -73,7 +73,7 @@ jobs:

- uses: actions/setup-node@v6
with:
node-version: 22.x
node-version: 24.x

- uses: actions/github-script@v8
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-tooling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

- uses: actions/setup-node@v6
with:
node-version: '22'
node-version: '24'

- run: yarn install --frozen-lockfile

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ jobs:
uses: actions/setup-node@v6
with:
cache: 'yarn'
node-version: '22'
node-version: '24'

- run: yarn install --frozen-lockfile
4 changes: 2 additions & 2 deletions .github/workflows/docsite-publish-ghpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
fetch-depth: 0

- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@826660b82addbef3abff5fa871492ebad618c9e1 # v4.3.3
uses: nrwl/nx-set-shas@afb73a62d26e41464e9254689e1fd6122ee683c1 # v5.0.1
with:
main-branch-name: 'master'

- uses: actions/setup-node@v6
with:
node-version: '22'
node-version: '24'
cache: 'yarn'

- name: Install packages
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-vrt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ jobs:
fetch-depth: 0

- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@826660b82addbef3abff5fa871492ebad618c9e1 # v4.3.3
uses: nrwl/nx-set-shas@afb73a62d26e41464e9254689e1fd6122ee683c1 # v5.0.1
with:
main-branch-name: 'master'

- uses: actions/setup-node@v6
with:
cache: 'yarn'
node-version: '22'
node-version: '24'

- run: yarn install --frozen-lockfile
- run: yarn playwright install --with-deps
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-website-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ jobs:
fetch-depth: 0

- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@826660b82addbef3abff5fa871492ebad618c9e1 # v4.3.3
uses: nrwl/nx-set-shas@afb73a62d26e41464e9254689e1fd6122ee683c1 # v5.0.1
with:
main-branch-name: 'master'

- uses: actions/setup-node@v6
with:
cache: 'yarn'
node-version: '22'
node-version: '24'

- run: echo number of CPUs "$(getconf _NPROCESSORS_ONLN)"
- name: NodeJS heap default size
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ jobs:
fetch-depth: 0

- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@826660b82addbef3abff5fa871492ebad618c9e1 # v4.3.3
uses: nrwl/nx-set-shas@afb73a62d26e41464e9254689e1fd6122ee683c1 # v5.0.1
with:
main-branch-name: 'master'

- uses: actions/setup-node@v6
with:
cache: 'yarn'
node-version: '22'
node-version: '24'

- run: echo number of CPUs "$(getconf _NPROCESSORS_ONLN)"

Expand Down Expand Up @@ -90,14 +90,14 @@ jobs:
fetch-depth: 0

- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@826660b82addbef3abff5fa871492ebad618c9e1 # v4.3.3
uses: nrwl/nx-set-shas@afb73a62d26e41464e9254689e1fd6122ee683c1 # v5.0.1
with:
main-branch-name: 'master'

- uses: actions/setup-node@v6
with:
cache: 'yarn'
node-version: '22'
node-version: '24'

- run: echo number of CPUs "$(getconf _NPROCESSORS_ONLN)"

Expand Down Expand Up @@ -147,14 +147,14 @@ jobs:
fetch-depth: 0

- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@826660b82addbef3abff5fa871492ebad618c9e1 # v4.3.3
uses: nrwl/nx-set-shas@afb73a62d26e41464e9254689e1fd6122ee683c1 # v5.0.1
with:
main-branch-name: 'master'

- uses: actions/setup-node@v6
with:
cache: 'yarn'
node-version: '22'
node-version: '24'

- run: echo number of CPUs "$(getconf _NPROCESSORS_ONLN)"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vrt-baseline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/setup-node@v6
with:
cache: 'yarn'
node-version: '22'
node-version: '24'

- run: yarn install --frozen-lockfile
- run: yarn playwright install --with-deps
Expand Down