microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
.ci/pr-pipeline.yml
34lines · modecode
| 1 | pr: |
| 2 | branches: |
| 3 | include: ["*"] |
| 4 | |
| 5 | trigger: |
| 6 | - none |
| 7 | |
| 8 | jobs: |
| 9 | - job: Linux |
| 10 | pool: |
| 11 | vmImage: ubuntu-latest |
| 12 | timeoutInMinutes: 20 |
| 13 | steps: |
| 14 | - checkout: self |
| 15 | clean: true |
| 16 | - template: common-validation.yml |
| 17 | |
| 18 | - job: Windows |
| 19 | pool: |
| 20 | vmImage: windows-latest |
| 21 | timeoutInMinutes: 20 |
| 22 | steps: |
| 23 | - checkout: self |
| 24 | clean: true |
| 25 | - template: common-validation.yml |
| 26 | |
| 27 | - job: macOS |
| 28 | pool: |
| 29 | vmImage: macOS-latest |
| 30 | timeoutInMinutes: 20 |
| 31 | steps: |
| 32 | - checkout: self |
| 33 | clean: true |
| 34 | - template: common-validation.yml |