Commit 6a2e30e8d0fa464f0575ec7da93e11c2b1610da7

Authored by deepak kumar
1 parent 27ed00b553
Exists in master

bitbucket-pipelines.yml created online with Bitbucket

Showing 1 changed file with 13 additions and 0 deletions   Show diff stats
bitbucket-pipelines.yml
... ... @@ -0,0 +1,13 @@
  1 +# This is a sample build configuration for Javascript.
  2 +# Check our guides at https://confluence.atlassian.com/x/VYk8Lw for more examples.
  3 +# Only use spaces to indent your .yml configuration.
  4 +# -----
  5 +# You can specify a custom docker image from Docker Hub as your build environment.
  6 +image: node:4.6.0
  7 +
  8 +pipelines:
  9 + default:
  10 + - step:
  11 + script: # Modify the commands below to build your repository.
  12 + - npm install
  13 + - npm test
0 14 \ No newline at end of file
... ...