forked from microsoft/tslint-microsoft-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.azure-pipelines.yml
54 lines (49 loc) · 1.15 KB
/
.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
trigger:
- master
- azure-pipelines
jobs:
- job: Linux
pool:
vmImage: 'ubuntu-16.04'
strategy:
matrix:
Node6:
NODE_VERSION: '6.x'
NPM_INSTALL: true
TEST_TITLE: 'Linux node 6'
Node8:
NODE_VERSION: '8.x'
NPM_INSTALL: true
TEST_TITLE: 'Linux node 8'
Node10:
NODE_VERSION: '10.x'
TEST_TITLE: 'Linux node 10'
Node11:
NODE_VERSION: '11.x'
TEST_TITLE: 'Linux node 11'
steps:
- template: .azure-pipelines-steps.yml
- job: Windows
pool:
vmImage: 'vs2017-win2016'
strategy:
matrix:
Node6:
NODE_VERSION: '6.x'
NPM_INSTALL: true
TEST_TITLE: 'Windows node 6'
Node8:
NODE_VERSION: '8.x'
NPM_INSTALL: true
TEST_TITLE: 'Windows node 8'
Node10:
NODE_VERSION: '10.x'
TEST_TITLE: 'Windows node 10'
Node11:
NODE_VERSION: '11.x'
TEST_TITLE: 'Windows node 11'
steps:
- template: .azure-pipelines-steps.yml
variables:
# Used by chalk. Ensures output from Jest includes ANSI escape characters that are needed to match test snapshots.
FORCE_COLOR: 1