Skip to content

Instantly share code, notes, and snippets.

@AmilKey
Forked from citrus/circle.yml
Created June 17, 2016 07:22
Show Gist options
  • Save AmilKey/451ffb0a9c3c837311a123c7c8cc4a9e to your computer and use it in GitHub Desktop.
Save AmilKey/451ffb0a9c3c837311a123c7c8cc4a9e 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