Ionic 2 integration with Bitbucket pipelines

Does anyone use bitbucket’s pipelines as continuous integration solution?

What is your bitbucket-pipelines.yml file configuration to build for a specific platform?
At the moment, I use it only for unit testing:

image: node:6.9.4

pipelines:
default:
- step:
- npm install
- npm test

3 Likes