Skip to content

Commit f49d125

Browse files
committed
Update all pipelines to node 20
The release pipelines should already be using this but the pr pipeline was on an old version
1 parent b897ec3 commit f49d125

3 files changed

Lines changed: 9 additions & 0 deletions

File tree

azure-pipeline.nightly.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ extends:
3131

3232
l10nSourcePaths: ./src
3333

34+
nodeVersion: "20.x"
35+
3436
buildSteps:
3537
- script: yarn install --frozen-lockfile --check-files
3638
displayName: Install dependencies

azure-pipeline.pr.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ jobs:
44
pool:
55
vmImage: 'macos-13'
66
steps:
7+
- task: NodeTool@0
8+
displayName: "Use Node.js 20"
9+
inputs:
10+
versionSpec: "20.x"
11+
712
- template: scripts/ci/common-setup.yml
813

914
- script: yarn run compile

azure-pipeline.release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ extends:
2828

2929
l10nSourcePaths: ./src
3030

31+
nodeVersion: "20.x"
32+
3133
buildSteps:
3234
- script: yarn install --frozen-lockfile --check-files
3335
displayName: Install dependencies

0 commit comments

Comments
 (0)