update README with test/ci instructions

This commit is contained in:
Brian Hicks 2018-03-27 22:14:55 -05:00
parent c3acc165d6
commit 0fce84dc5e
No known key found for this signature in database
GPG Key ID: FF1F407C0D3C2430

View File

@ -9,11 +9,23 @@ This repo contains an app showcasing all of these UI widgets.
To see them locally:
```
> cd styleguide-app
> elm-make Main.elm --output=elm.js
make styleguide-app/elm.js
```
Open `index.html` in your browser.
Open `styleguide-app/index.html` in your browser.
Alternatively, you may use elm-reactor. Please be aware that you'll need to globally
install fonts (in particular, Muli) if you go this route.
## Tests
Run tests with
```
make test
```
### CI (Travis)
Travis will run `make ci` to verify everything looks good.
You can run this locally to catch errors before you push!