Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ parameters:
type: string
- name: registryUrl
type: string
default: 'https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/'
- name: CustomCondition
type: string
default: succeeded()
Expand Down
6 changes: 6 additions & 0 deletions eng/pipelines/templates/jobs/verify-installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,16 @@ jobs:
condition: and(succeeded(), contains(variables['Agent.OS'], 'Windows'))
workingDirectory: hosting

- template: /eng/common/pipelines/templates/steps/create-authenticated-npmrc.yml
parameters:
npmrcPath: $(Agent.TempDirectory)/verify/.npmrc
Comment thread
chidozieononiwu marked this conversation as resolved.

Comment thread
chidozieononiwu marked this conversation as resolved.
- bash: nohup npx -y http-server &
displayName: Start server in hosting/ (bash)
condition: and(succeeded(), not(contains(variables['Agent.OS'], 'Windows')))
workingDirectory: hosting
env:
npm_config_userconfig: "$(Agent.TempDirectory)/verify/.npmrc"

- pwsh: |
Start-Process npx.cmd `
Expand Down
Loading