Skip to content
This repository has been archived by the owner on May 29, 2020. It is now read-only.

Latest commit

 

History

History
23 lines (20 loc) · 379 Bytes

bitbucket-pipelines.5.md

File metadata and controls

23 lines (20 loc) · 379 Bytes

Nodejs

image: node:6.0.0

pipelines:
  default:
    - step:
        script:
          - npm install --silent --progress=false
          - npm test

Meu bloco scripts do package.json:

...
"scripts": {
  "start": "node app.js",
  "test": "mocha test/**/*Test.js",
  "coverage": "istanbul cover _mocha -- -R spec"
},
...