diff --git a/.pipelines/ci/ci.yml b/.pipelines/ci/ci.yml index 982487c435..334386a86a 100644 --- a/.pipelines/ci/ci.yml +++ b/.pipelines/ci/ci.yml @@ -33,4 +33,5 @@ jobs: platform: x64 - template: ./templates/build-powertoys-ci.yml parameters: - platform: arm64 \ No newline at end of file + platform: arm64 + - template: ./templates/run-ui-tests-ci.yml \ No newline at end of file diff --git a/.pipelines/ci/templates/run-ui-tests-ci.yml b/.pipelines/ci/templates/run-ui-tests-ci.yml new file mode 100644 index 0000000000..940b9f33c0 --- /dev/null +++ b/.pipelines/ci/templates/run-ui-tests-ci.yml @@ -0,0 +1,11 @@ +parameters: + additionalBuildArguments: '' + +steps: +- checkout: self + fetchDepth: 1 + submodules: true +- bash: | + echo "##[group]Beginning of a group" + echo "##[debug]Debug text" + echo "##[endgroup]" \ No newline at end of file