Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
language: node_js
node_js:
- stable
install:
# not compatible webpack@3.1.0 and extract-text-webpack-plugin@2.1.2
- npm install --force
script:
- npm run lint
- npm run test
- npm run coverage
after_script: "npm install coveralls && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"