Skip to content

Commit

Permalink
add sdl tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanann-ms committed Aug 27, 2024
1 parent 4b7ae06 commit fbb0da6
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion vsts/node-nightly-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,32 @@ extends:
pool:
vmImage: 'windows-latest'
steps:
- template: common/sdl_steps.yaml
- task: securedevelopmentteam.vss-secure-development-tools.build-task-credscan.CredScan@3
displayName: "Credential Scan"
inputs:
outputFormat: 'pre'
scanFolder: $(Build.SourcesDirectory)
- task: securedevelopmentteam.vss-secure-development-tools.build-task-policheck.PoliCheck@2
displayName: 'Run PoliCheck'
inputs:
targetType: F
- task: PostAnalysis@2
displayName: "SDL Analysis"
inputs:
AllTools: false
APIScan: false
BinSkim: false
CodesignValidation: false
CredScan: true
FortifySCA: false
FxCop: false
ModernCop: false
PoliCheck: true
RoslynAnalyzers: false
SDLNativeRules: false
Semmle: false
TSLint: false
ToolLogsNotFoundAction: 'Standard'

- stage: Test
dependsOn: ['SDL']
Expand Down

0 comments on commit fbb0da6

Please sign in to comment.