Run different npm scripts in a CI environment
npm install is-ci-cliRun different npm scripts in a CI environment
Ensure you have Node.js version 8+ installed. Then run the following:
``sh`
npm install --dev is-ci-cli
In your package.json:
`js``
"scripts": {
"test": "is-ci-cli test:ci test:local"
}
When in a CI environment (as detected by
is-ci), this runs the first argument as an
npm (or yarn) script. Otherwise, run the 2nd argument (if provided)
MIT