Ship every code change that you make
npm add --save-dev @codechecks/commit-deployment
or
yarn add --dev @codechecks/commit-deployment
Add to your codechecks.yml
file:
checks:
- name: commit-deployment
options:
buildPath: "./dist"
# ...
With each pull request you will get a link do current deployment of your frontend app.
interface Options {
buildPath: string;
rootFile?: string;
}
string
Relative (to current codechecks file) path to build that is supposed to be deployed.
optional string
Default: index.html
File considered as root in your build. Attached link will point directly to it.
All contributions are welcomed. Read more in CONTRIBUTING.md
MIT @ codechecks.io