Skip to content
This repository was archived by the owner on Mar 23, 2023. It is now read-only.

Commit b872d78

Browse files
author
Zane Starr
committed
Add travis CI to repo
1 parent 724c3e8 commit b872d78

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.travis.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
language: node_js
3+
cache: npm
4+
stages:
5+
- check
6+
- test
7+
- cov
8+
9+
node_js:
10+
- '10'
11+
12+
os:
13+
- linux
14+
- osx
15+
- windows
16+
17+
script: npx nyc -s npm run test:node -- --bail
18+
after_success: npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov
19+
20+
jobs:
21+
include:
22+
- stage: check
23+
script:
24+
- npx aegir commitlint --travis
25+
- npx aegir dep-check
26+
- npm run lint
27+
notifications:
28+
email: false

0 commit comments

Comments
 (0)