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
13 changes: 8 additions & 5 deletions .azure-pipelines/daily-ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ extends:
parameters:
pool:
name: Azure-Pipelines-1ESPT-ExDShared
image: ubuntu-latest
os: linux
sdl:
sourceAnalysisPool:
Expand All @@ -47,14 +48,16 @@ extends:
inputs:
versionSpec: '20.x'

- script: npm ci
- task: npm@1
displayName: Install dependencies
workingDirectory: $(Build.SourcesDirectory)
inputs:
command: 'ci'
verbose: true
customRegistry: 'useFeed'
customFeed: 'Graph Developer Experiences/GraphDeveloperExperiences_Public'
workingDir: '$(Build.SourcesDirectory)'

- script: npm run build --workspaces
displayName: Build SDK
workingDirectory: $(Build.SourcesDirectory)

- script: npm test
displayName: Run unit tests
workingDirectory: $(Build.SourcesDirectory)
Loading