Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(node): limit node version to 18.13.0 #3097

Merged
merged 1 commit into from
Feb 10, 2023
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
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