blob: b4e310dbda1dbf0bff609fa44e70579c93a37774 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
language: node_js
sudo: false
git:
depth: 10
node_js:
- "4"
- "6"
- "8"
- "10"
install:
- npm install
- npm install -g codecov
script:
- npm test
- npm run cover
after_script:
- codecov
|