diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cef85a792..943f4d0604 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -64,6 +64,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Fix [#2110](https://github.com/Microsoft/BotFramework-WebChat/issues/2110). Fixed sendBox input/textarea background color issue, by [@tdurnford](https://github.com/johndoe) in PR [#2111](https://github.com/Microsoft/BotFramework-WebChat/pull/2111) - Fix [#2104](https://github.com/Microsoft/BotFramework-WebChat/issues/2104). Remove deprecated `/master/webchat**.js` links from samples, by [@corinagum](https://github.com/corinagum) in PR [#2105](https://github.com/Microsoft/BotFramework-WebChat/pull/2105) - Fix [#1863](https://github.com/Microsoft/BotFramework-WebChat/issues/1863). Remove title, subtitle, and text of cards from being spoken by [@corinagum](https://github.com/corinagum) in PR [#2118](https://github.com/Microsoft/BotFramework-WebChat/pull/2118) +- Fix [#2134](https://github.com/Microsoft/BotFramework-WebChat/issues/2134). Added `azure-pipelines.yml` for embed package, by [@compulim](https://github.com/compulim) in PR [#2135](https://github.com/Microsoft/BotFramework-WebChat/pull/2135) - Fix [#2106](https://github.com/Microsoft/BotFramework-WebChat/issues/2016). Fix `AdaptiveCardHostConfig` warning associated with the `CommonCard` component, by [@tdurnford](https://github.com/tdurnford) in PR [#2108](https://github.com/Microsoft/BotFramework-WebChat/pull/2108) ### Samples diff --git a/packages/embed/azure-pipelines.yml b/packages/embed/azure-pipelines.yml new file mode 100644 index 0000000000..298a5e6e5c --- /dev/null +++ b/packages/embed/azure-pipelines.yml @@ -0,0 +1,46 @@ +trigger: +- master + +pool: + vmImage: 'ubuntu-latest' + +steps: +- task: NodeTool@0 + displayName: 'Use Node 11.x' + inputs: + versionSpec: 11.x + +- task: Npm@1 + displayName: 'npm ci' + inputs: + command: custom + workingDir: packages/embed + verbose: false + customCommand: ci + +- task: Npm@1 + displayName: 'npm run prepublishOnly' + inputs: + command: custom + workingDir: packages/embed + verbose: false + customCommand: 'run prepublishOnly' + +- task: CopyFiles@2 + displayName: 'Copy index.html to drop' + inputs: + SourceFolder: packages/embed/dist + Contents: index.html + TargetFolder: '$(Build.ArtifactStagingDirectory)/drop' + +- task: CopyFiles@2 + displayName: 'Copy servicingPlan.json to drop' + inputs: + SourceFolder: packages/embed + Contents: servicingPlan.json + TargetFolder: '$(Build.ArtifactStagingDirectory)/drop' + +- task: PublishBuildArtifacts@1 + displayName: 'Publish Artifact: drop' + inputs: + PathtoPublish: '$(Build.ArtifactStagingDirectory)/drop'