Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nfischer/travis-check-changes
- Owner: nfischer
- Created: 2016-06-08T23:54:22.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-01-08T22:36:25.000Z (about 3 years ago)
- Last Synced: 2024-04-24T16:24:24.305Z (9 months ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```