We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2923c3 commit e424f40Copy full SHA for e424f40
builds/azure-pipelines/template-steps-build-test.yml
@@ -102,6 +102,15 @@ steps:
102
targetFolder: $(azureFunctionsExtensionBundlePath)/bin
103
overWrite: true
104
105
+ # Copy the Sql nupkg to ensure it's available for tests since the package copy task is failing occasionally so having this redundancy.
106
+- task: CopyFiles@2
107
+ displayName: 'Copy local Sql package to local-packages folder'
108
+ inputs:
109
+ sourceFolder: $(Build.SourcesDirectory)/src/bin/${{ parameters.configuration }}
110
+ contents: '*.nupkg'
111
+ targetFolder: $(Build.SourcesDirectory)/local-packages
112
+ overWrite: true
113
+
114
- script: |
115
npm install
116
npm run lint
0 commit comments