mirror of https://github.com/lukechilds/ow.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
332 B
16 lines
332 B
language: node_js
|
|
node_js:
|
|
- '10'
|
|
- '8'
|
|
- '6'
|
|
after_script:
|
|
- './node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov'
|
|
before_deploy:
|
|
- npm run docs
|
|
deploy:
|
|
- provider: pages
|
|
skip_cleanup: true
|
|
local_dir: docs/
|
|
github_token: $GITHUB_TOKEN
|
|
on:
|
|
tags: true
|
|
|