Skip to content
This repository was archived by the owner on Jun 11, 2022. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
📚 minimal app.json for CI
  • Loading branch information
mars committed Jun 29, 2017
commit 7e65c2f2dd695ee3e744a4926d72831f87f7495e
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,20 @@ Use [create-react-app's built-in Jest testing](https://github.com/facebookincuba

As long as tests can be run with `npm test` (like the built-in Jest testing) then it will work effortlessly with [Heroku CI](https://devcenter.heroku.com/articles/heroku-ci).

#### Minimal `app.json`

Heroku CI uses [`app.json`](https://devcenter.heroku.com/articles/app-json-schema) to provision test apps. To enable Heroku CI, commit this minimal example `app.json`:

```json
{
"buildpacks": [
{
"url": "https://github.com/mars/create-react-app-buildpack"
}
]
}
```

Customization
-------------

Expand Down