UNPKG

ci-scripts

Version:

Useful scripts to execute from your CI runner. For example, post to Slack and GitHub when your build completes:

8 lines (6 loc) 160 B
const isDryRun = ({params = {}}) => params.plan || params['dry-run'] || process.env.DRY_RUN || process.env.CI_PLAN; module.exports = isDryRun;