Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nfischer/travis-check-changes

Make sure that no files were changed after travis finishes running
https://github.com/nfischer/travis-check-changes

Last synced: about 2 months ago
JSON representation

Make sure that no files were changed after travis finishes running

Awesome Lists containing this project

README

        

# travis-check-changes

Make sure that no files were changed after travis finishes running

## Installation

```
npm install --save-dev travis-check-changes
```

## Usage

In `package.json`:

```json
"scripts": {
"test": "... whatever you have here ...",
"after-travis": "travis-check-changes"
},
```

In `.travis.yml`:

```yaml
script:
- npm test
- npm run after-travis
```