forked from microsoft/TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.yml
50 lines (48 loc) · 901 Bytes
/
config.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
workflows:
version: 2
main:
jobs:
- node9
- node8
- node6
nightly:
triggers:
- schedule:
cron: "0 8 * * *"
filters:
branches:
only: master
jobs:
- node9:
context: nightlies
- node8:
context: nightlies
- node6:
context: nightlies
base: &base
environment:
- workerCount: 4
- timeout: 400000
steps:
- checkout
- run: |
git submodule update --init --recursive
npm uninstall typescript --no-save
npm uninstall tslint --no-save
npm install
#npm update Appeared in Jenkins only
npm test
version: 2
jobs:
node9:
docker:
- image: circleci/node:9
<<: *base
node8:
docker:
- image: circleci/node:8
<<: *base
node6:
docker:
- image: circleci/node:6
<<: *base