0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-02-17 23:45:29 -05:00

fix: improve circle build time

This commit is contained in:
Juan Picado @jotadeveloper 2017-07-09 11:25:51 +02:00
parent 5e086d1830
commit b743ee7e3c
No known key found for this signature in database
GPG key ID: 18AC54485952D158
2 changed files with 3 additions and 5 deletions

View file

@ -21,13 +21,11 @@ dependencies:
- yarn install --no-progress
test:
override:
- npm run pretest
- nvm alias default 6
- npm rebuild node-sass --force
- yarn run test-travis
- nvm alias default 4
- npm rebuild node-sass --force
- yarn run test-travis
- nvm alias default 8
- npm rebuild node-sass --force
- yarn run test-travis
- yarn run coverage:codecov

View file

@ -114,11 +114,11 @@
],
"scripts": {
"pretest": "npm run lint && npm run build:webui",
"test": "npm run pretest && mocha ./test/functional ./test/unit --reporter=spec --full-trace",
"test": "mocha ./test/functional ./test/unit --reporter=spec --full-trace",
"test:coverage": "nyc npm t",
"coverage:html": "nyc report --reporter=html",
"coverage:codecov": "nyc report --reporter=lcov | codecov",
"test-travis": "npm run pretest && npm run test:coverage",
"test-travis": "npm run test:coverage",
"test-only": "mocha ./test/functional ./test/unit",
"lint": "eslint .",
"build-docker": "docker build -t verdaccio .",