1 | #!/usr/bin/env node
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 | 'use strict'
|
8 |
|
9 | process.chdir(`${__dirname}/..`)
|
10 |
|
11 | const { runTasks } = require('ape-tasking')
|
12 | const { sendToCodeclimate } = require('ape-reporting')
|
13 |
|
14 | runTasks('report', [
|
15 | () => sendToCodeclimate('coverage/lcov.info', {})
|
16 | ], true)
|