Skip to content

Commit

Permalink
build(node): limit node version to 18.13.0 (Azure#3097)
Browse files Browse the repository at this point in the history
  • Loading branch information
archerzz authored Feb 10, 2023
1 parent c8280c0 commit 3dce34e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions eng/pipelines/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ stages:
useGlobalJson: true
performMultiLevelLookup: true
- task: NodeTool@0
displayName: "Install Node 18.x"
displayName: "Install Node 18.13.0"
inputs:
versionSpec: '18.x'
versionSpec: '18.13.0'
- script: |
npm ci
displayName: "Install packages"
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/cadl-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ variables:
- name: skipComponentGovernanceDetection
value: true
- name: NodeVersion
value: '18.x'
value: '18.13.0'
- name: VAR_ARTIFACT_NAME
value: 'CadlCsharpEmitter'
- name: VAR_BUILD_ARTIFACT_STAGING_DIRECTORY
Expand Down
4 changes: 2 additions & 2 deletions eng/pipelines/mgmt-mocktest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ stages:
useGlobalJson: true
performMultiLevelLookup: true
- task: NodeTool@0
displayName: "Install Node 18.x"
displayName: "Install Node 18.13.0"
inputs:
versionSpec: '18.x'
versionSpec: '18.13.0'
- script: |
npm ci
displayName: "Install packages"
Expand Down
4 changes: 2 additions & 2 deletions eng/pipelines/smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
vmImage: ubuntu-20.04
steps:
- task: NodeTool@0
displayName: "Install Node 18.x"
displayName: "Install Node 18.13.0"
inputs:
versionSpec: '18.x'
versionSpec: '18.13.0'
- task: UseDotNet@2
displayName: 'Use .NET Core SDK'
inputs:
Expand Down

0 comments on commit 3dce34e

Please sign in to comment.