Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mike-north/ember-ci
Continuous integration goodies for ember.js apps
https://github.com/mike-north/ember-ci
Last synced: about 1 month 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 (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-11-19T13:48:39.000Z (2 months ago)
- Last Synced: 2024-12-09T03:08:39.478Z (about 2 months ago)
- Language: JavaScript
- Size: 2.7 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 [![Build Status](https://travis-ci.org/mike-north/ember-ci.svg?branch=master)](https://travis-ci.org/mike-north/ember-ci) [![CircleCI](https://circleci.com/gh/mike-north/ember-ci/tree/master.svg?style=svg)](https://circleci.com/gh/mike-north/ember-ci/tree/master)
[![Greenkeeper badge](https://badges.greenkeeper.io/mike-north/ember-ci.svg)](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/).