-
-
Save AmilKey/451ffb0a9c3c837311a123c7c8cc4a9e to your computer and use it in GitHub Desktop.
circle.yml for building ember app with Circle CI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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