Skip to content
Open
Changes from 3 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
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 on lines +77 to +79

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
Comment thread
chidozieononiwu marked this conversation as resolved.
env:
npm_config_userconfig: "$(Agent.TempDirectory)/verify/.npmrc"

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