marko/.travis.yml
2019-12-31 10:47:31 -07:00

11 lines
174 B
YAML

sudo: false
node_js:
- "8"
- "10"
- "12"
language: node_js
before_install: "npm i -g npm@latest"
install: "npm ci"
script: "npm run test-ci"
after_success: "npm run codecov"