* First pass at mafintosh/dns-packet#48. No auto-refresh yet, because that's a more invasive change. * Add a quick note to README to kick off a round of tests. * remove sudo:false
12 lines
189 B
YAML
12 lines
189 B
YAML
language: node_js
|
|
node_js:
|
|
- node
|
|
- lts/*
|
|
install:
|
|
- npm install
|
|
- npm install coveralls
|
|
script:
|
|
- npm run coverage
|
|
after_success:
|
|
- npx nyc report --reporter=text-lcov | npx coveralls
|