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.
2 parents b3faf17 + 755d30c commit d3a1235Copy full SHA for d3a1235
azure-pipelines.yml
@@ -0,0 +1,31 @@
1
+trigger:
2
+- master
3
+
4
+pool:
5
+ vmImage: 'VS2017-Win2016'
6
7
+variables:
8
+ buildPlatform: 'Any CPU'
9
+ buildConfiguration: 'Release'
10
11
+steps:
12
+- task: NodeTool@0
13
+ inputs:
14
+ versionSpec: '6.x'
15
16
+- script: npm install --global npm
17
18
+- task: VSBuild@1
19
20
+ solution: 'build.proj'
21
+ msbuildArgs: '/p:PackageOutputDir="$(build.artifactStagingDirectory)"'
22
+ platform: '$(buildPlatform)'
23
+ configuration: '$(buildConfiguration)'
24
25
+- task: DotNetCoreCLI@2
26
27
+ command: 'test'
28
+ projects: 'tests/React.Tests/React.Tests.csproj'
29
+ arguments: '--no-build --configuration $(buildConfiguration)'
30
31
+- task: PublishBuildArtifacts@1
0 commit comments