lutils
Version:
A few reliable utils.
24 lines (18 loc) • 316 B
YAML
language: node_js
node_js: ["6.10"]
cache:
yarn: true
before_install:
- echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc
install:
- yarn install
script:
- yarn lint
- yarn build
- DEBUG=true yarn coverage
deploy:
provider: script
script:
- npm run release
on:
tags: true