Package Exports
- now-pipeline
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (now-pipeline) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
now-pipeline
Single CI command to deploy new version to Zeit Now, including e2e tests and alias switch
What and why
Single command now-pipeline
- deploys new version
- tests it
- switches alias to new deployment (if there is an alias)
- takes down the old deploy
Work in progress
Currently need to pass source files to the now-pipeline command.
$ now-pipeline server.js src/*.jsInstall and use
npm i -g now-pipelineSet NOW_TOKEN CI environment variable with a token that you can get from
Zeit account page
Add CI command to now-pipeline. By default it will execute npm test
and will pass the deployed url as NOW_URL environment variable. You can
customize everything.
Example
Simple Travis commands
script:
# after unit tests
- npm i -g now-pipeline
- now-pipelinePrune existing deploys (if they do not have an alias) and show the deploy.
- npm i -g now-pipeline
- now-pipeline-prune
- now-pipeline
- now-pipeline-listPass test command and name of the environment variable for deployed url
- npm i -g now-pipeline
- now-pipeline --as HOST --test "npm run e2e"Example projects
Additional bin commands
now-pipeline-list- see the current deploys for the current projectnow-pipeline-prune- remove all non-aliased deploys for the current project
You can pass custom test command to the pipeline to be used after deploying
fresh install using --test "command" argument. The command will get NOW_URL
environment variable with new install. For example
npm i -g now-pipeline
now-pipeline --test "npm run prod-test"where the package.json has
{
"scripts": {
"prod-test": "e2e-test $NOW_URL"
}
}Details
now-pipelineuses Zeit API via now-client.- You can see the list of recent actions at Zeit dashboard.
Related
- next-update is a similar "if tests pass, upgrade" tool for your NPM dependencies.
Small print
Author: Gleb Bahmutov <gleb.bahmutov@gmail.com> © 2016
License: MIT - do anything with the code, but don't blame me if it does not work.
Support: if you find any problems with this module, email / tweet / open issue on Github
MIT License
Copyright (c) 2016 Gleb Bahmutov <gleb.bahmutov@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.