Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

travis-check-changes

nfischer158MIT0.4.0

Make sure that no files were changed after travis finishes running

travis, CI, changes, after

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:

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

In .travis.yml:

script:
  - npm test
  - npm run after-travis