haraka-plugin-opendkim
Version:
Haraka plugin that uses libopendkim for DKIM
29 lines (23 loc) • 439 B
YAML
language: node_js
node_js:
- "4"
- "6"
# these are required for building on node.js v4
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
env:
- "CXX=g++-4.8"
# end: these are required for building on node.js v4
before_script:
script:
- npm run lint
- npm test
after_success:
- npm install istanbul codecov
- npm run cover
- ./node_modules/.bin/codecov
sudo: false