Last active
September 23, 2016 03:46
-
-
Save jcypret/1b2fda46ec104cb7c4949fb38418913c to your computer and use it in GitHub Desktop.
GitLab CI for Ember
This file contains hidden or 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
image: node:latest | |
cache: | |
paths: | |
- node_modules/ | |
- bower_components/ | |
before_script: | |
- npm install | |
- npm install -g phantomjs-prebuilt | |
- npm install -g bower --allow-root | |
- bower install --allow-root | |
test: | |
script: | |
- npm test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment