-
Notifications
You must be signed in to change notification settings - Fork 45
/
.travis.yml
45 lines (45 loc) · 1.23 KB
/
.travis.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
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- '10'
before_script:
- npm prune
jobs:
include:
- stage: tests
script: npm run lint
name: "Lint"
- stage: tests
script: npm test test/court/**/*.js test/court/*.js test/arbitration/*.js
name: "Court Controller"
- stage: tests
script: npm test test/disputes/disputes-{create,evidence,draft}.js
name: "Court Disputes"
- stage: tests
script: npm test test/disputes/disputes-{voting,appeal,confirm-appeal}.js
name: "Court Appeals"
- stage: tests
script: npm test test/disputes/disputes-settle-round.js
name: "Court Settle Rounds"
- stage: tests
script: npm test test/disputes/disputes-settle-appeal.js
name: "Court Settle Appeals"
- stage: tests
script: npm test test/registry/*.js
name: "Registry"
- stage: tests
script: npm test test/lib/*.js
name: "Lib"
- stage: tests
script: npm test test/voting/*.js
name: "Voting"
- stage: tests
script: npm test test/subscriptions/*.js
name: "Subscriptions"
- stage: tests
script: npm test test/treasury/court-treasury.js
name: "Treasury"