forked from hyperjumptech/react-native-confetti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
40 lines (37 loc) · 859 Bytes
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
jobs:
- job: Linux
pool:
vmImage: 'ubuntu-16.04'
steps:
- task: NodeTool@0
inputs:
versionSpec: '12.x'
displayName: 'Install Node.js'
- script: yarn install
displayName: 'yarn install --frozen-lockfile'
- script: yarn test
displayName: 'Run the tests'
- job: macOS
pool:
vmImage: 'macOS-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '12.x'
displayName: 'Install Node.js'
- script: yarn install
displayName: 'yarn install --frozen-lockfile'
- script: yarn test
displayName: 'Run the tests'
- job: Windows
pool:
vmImage: 'vs2017-win2016'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'
- script: yarn install
displayName: 'yarn install --frozen-lockfile'
- script: yarn test
displayName: 'Run the tests'