MRTK3 change to make the cursor visuals very steady in editor and on device #1794
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Validation (MRTK3) | |
on: | |
push: | |
branches: ["mrtk3"] | |
pull_request: | |
branches: ["mrtk3"] | |
jobs: | |
validation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get Pull Request changes | |
if: github.event_name == 'pull_request' | |
run: | | |
${{ github.workspace }}/Pipelines/Scripts/gitchanges.ps1 -TargetBranch '${{ github.base_ref }}' -OutputFile '${{ runner.temp }}/build/changed_files.txt' -RepoRoot '${{ github.workspace }}' | |
shell: pwsh | |
- name: Scoped code validation | |
if: github.event_name == 'pull_request' | |
run: | | |
${{ github.workspace }}/Pipelines/Scripts/validatecode.ps1 -Directory '${{ github.workspace }}' -ChangesFile '${{ runner.temp }}/build/changed_files.txt' | |
shell: pwsh | |
- name: Global code validation | |
if: github.event_name == 'push' | |
run: | | |
${{ github.workspace }}/Pipelines/Scripts/validatecode.ps1 -Directory '${{ github.workspace }}' | |
shell: pwsh |