UNPKG
amatch
Version:
latest (1.0.1)
1.0.1
1.0.0
Namespace string matcher
github.com/a-labo/amatch
a-labo/amatch
amatch
/
ci
/
report.js
17 lines
(11 loc)
•
277 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env node
/** * Send reports. */
'use strict'
process.
chdir
(
`
${__dirname}
/..`
)
const
{ runTasks } =
require
(
'ape-tasking'
)
const
{ sendToCodeclimate } =
require
(
'ape-reporting'
)
runTasks
(
'report'
, [
() =>
sendToCodeclimate
(
'coverage/lcov.info'
, {}) ],
true
)