https://github.com/mike-north/ember-ci
Continuous integration goodies for ember.js apps
https://github.com/mike-north/ember-ci
Last synced: 10 months ago
JSON representation
Continuous integration goodies for ember.js apps
- Host: GitHub
- URL: https://github.com/mike-north/ember-ci
- Owner: mike-north
- License: mit
- Created: 2016-07-30T15:40:19.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2025-08-19T17:09:08.000Z (10 months ago)
- Last Synced: 2025-08-19T19:27:37.206Z (10 months ago)
- Language: JavaScript
- Size: 2.72 MB
- Stars: 25
- Watchers: 2
- Forks: 4
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-ember - ember-ci - Continuous integration goodies for ember.js apps. (Packages / CI/CD)
README
# ember-ci [](https://travis-ci.org/mike-north/ember-ci) [](https://circleci.com/gh/mike-north/ember-ci/tree/master)
[](https://greenkeeper.io/)
Continuious integration tools and goodies for Ember.js apps.
## Installation
You can install this addon using ember-cli
```sh
ember install ember-ci
```
### Travis-CI
#### Test with Chrome instead of PhantomJS
```sh
ember g travis-chrome
```
### Circle-CI
#### Test with Phantomjs 2.1
```sh
ember g circle-ci-phantom
```
#### Test with headless Chrome
```sh
ember g circle-ci-chrome
```
## Contributing
* `git clone` this repository
* `npm install`
* `bower install`
## Running
* `ember serve`
* Visit your app at http://localhost:4200.
## Running Tests
* `npm test` (Runs `ember try:testall` to test your addon against multiple Ember versions)
* `ember test`
* `ember test --server`
## Building
* `ember build`
## Thanks
* [@martndemus](https://github.com/martndemus) for a [gist that inspired the Travis-CI chrome setup](https://gist.github.com/martndemus/79fe2198c628c22b78f4)
For more information on using ember-cli, visit [http://ember-cli.com/](http://ember-cli.com/).