]> gerrit.simantics Code Review - simantics/district.git/blob - org.simantics.maps.server/node/node-v4.8.0-win-x64/node_modules/npm/node_modules/request/node_modules/form-data/wercker.yml
Adding integrated tile server
[simantics/district.git] / org.simantics.maps.server / node / node-v4.8.0-win-x64 / node_modules / npm / node_modules / request / node_modules / form-data / wercker.yml
1 # This references the default nodejs container from
2 # the Docker Hub: https://registry.hub.docker.com/_/node/
3 # If you want Nodesource's container you would reference nodesource/node
4 # Read more about containers on our dev center
5 # http://devcenter.wercker.com/docs/containers/index.html
6 box: node
7 # This is the build pipeline. Pipelines are the core of wercker
8 # Read more about pipelines on our dev center
9 # http://devcenter.wercker.com/docs/pipelines/index.html
10
11 # You can also use services such as databases. Read more on our dev center:
12 # http://devcenter.wercker.com/docs/services/index.html
13 # services:
14     # - postgres
15     # http://devcenter.wercker.com/docs/services/postgresql.html
16
17     # - mongodb
18     # http://devcenter.wercker.com/docs/services/mongodb.html
19 build:
20   # The steps that will be executed on build
21   # Steps make up the actions in your pipeline
22   # Read more about steps on our dev center:
23   # http://devcenter.wercker.com/docs/steps/index.html
24   steps:
25     # A step that executes `npm install` command
26     - npm-install
27     # A step that executes `npm test` command
28     - npm-test
29
30     # A custom script step, name value is used in the UI
31     # and the code value contains the command that get executed
32     - script:
33         name: echo nodejs information
34         code: |
35           echo "node version $(node -v) running"
36           echo "npm version $(npm -v) running"