forked from aragon/dao-templates
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
36 lines (36 loc) · 870 Bytes
/
.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
language: node_js
services:
- docker
cache:
directories:
- node_modules
- templates/shared/node_modules
- templates/bare/node_modules
- templates/trust/node_modules
- tempaltes/company/node_modules
- templates/company-board/node_modules
- templates/membership/node_modules
- templates/reputation/node_modules
notifications:
email: false
node_js:
- '9'
install:
- travis_wait 60 npm install
jobs:
include:
- stage: tests
script: npm run lint
name: "Lint"
- script: npm run test:bare
name: "Bare"
- script: npm run test:trust
name: "Trust"
- script: npm run test:company
name: "Company"
- script: npm run test:company:board
name: "Company Board"
- script: npm run test:membership
name: "Membership"
- script: npm run test:reputation
name: "Reputation"