Skip to content

Commit 442e034

Browse files
committed
add linting to travis
1 parent 06f90d1 commit 442e034

1 file changed

Lines changed: 16 additions & 10 deletions

File tree

.travis.yml

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
language: node_js
2-
node_js:
3-
- 6
4-
- 7
5-
- 8
6-
- 9
7-
- 10
8-
script:
9-
- npm run travis
10-
after_script:
11-
- npm run report-coverage
2+
jobs:
3+
include:
4+
- stage: lint
5+
node_js: 8
6+
script: npm run lint
7+
- stage: test
8+
node_js:
9+
- 6
10+
- 7
11+
- 8
12+
- 9
13+
- 10
14+
script:
15+
- npm run travis
16+
after_script:
17+
- npm run report-coverage

0 commit comments

Comments
 (0)