Skip to content

Instantly share code, notes, and snippets.

@jcypret
Last active September 23, 2016 03:46
Show Gist options
  • Save jcypret/1b2fda46ec104cb7c4949fb38418913c to your computer and use it in GitHub Desktop.
Save jcypret/1b2fda46ec104cb7c4949fb38418913c to your computer and use it in GitHub Desktop.
GitLab CI for Ember
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