Skip to content

Instantly share code, notes, and snippets.

@citrus
Created March 8, 2016 03:22
Show Gist options
  • Save citrus/cc1f7d55da8abc82ed0a to your computer and use it in GitHub Desktop.
Save citrus/cc1f7d55da8abc82ed0a to your computer and use it in GitHub Desktop.
circle.yml for building ember app with Circle CI
machine:
node:
version: 0.12.0
dependencies:
pre:
- export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH
- npm config set spin false
- npm install -g npm@^2
- npm install -g bower
override:
- npm install
- bower install
cache_directories:
- "node_modules"
- "bower_components"
test:
override:
- npm test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment