Skip to content
Open
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
8 changes: 8 additions & 0 deletions eng/automation/generation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,24 @@ steps:
inputs:
versionSpec: '$(NodeVersion)'

- template: /eng/common/pipelines/templates/steps/create-authenticated-npmrc.yml
parameters:
npmrcPath: $(Agent.TempDirectory)/release/.npmrc

- bash: |
npm install -g autorest
displayName: 'Install autorest'
condition: ${{ eq(parameters.RELEASE_TYPE, 'Swagger') }}
env:
npm_config_userconfig: "$(Agent.TempDirectory)/release/.npmrc"

- bash: |
npm ci
workingDirectory: $(Build.SourcesDirectory)/eng/common/tsp-client
displayName: 'Install tsp-client'
condition: ${{ eq(parameters.RELEASE_TYPE, 'TypeSpec') }}
env:
npm_config_userconfig: "$(Agent.TempDirectory)/release/.npmrc"
Comment thread
chidozieononiwu marked this conversation as resolved.

# - template: /eng/common/testproxy/test-proxy-tool.yml
# parameters:
Expand Down