1.0.0 • Published 7 years ago

zero-to-one-ci v1.0.0

Weekly downloads
1
License
ISC
Repository
-
Last release
7 years ago

egg-ci

NPM version build status Test coverage David deps npm download

Auto gen ci config file.

Installation

$ npm i egg-ci --save-dev

Usage

Add ci property to your package.json:

"ci": {
  "type": "travis, appveyor", // default ci env type is 'travis, appveyor'
  "npminstall": true, // use `npminstall` or `npm install`, default is true
  "version": "6", // test LTS node version by default
  // npm ci command
  "command": {
    "travis": "ci",
    "appveyor": "test"
  },
  "services": "redis-server, mysql", // custom service
  "license": false // generate license
}

How

Use npm postinstall hoook to create the *.yml after each npm install run.

License

MIT