Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devversion/travis-after-modes
Travis CI After All Event Implementation
https://github.com/devversion/travis-after-modes
concurrency matrix tools travis travis-ci
Last synced: 22 days ago
JSON representation
Travis CI After All Event Implementation
- Host: GitHub
- URL: https://github.com/devversion/travis-after-modes
- Owner: devversion
- License: mit
- Created: 2016-12-06T16:04:19.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-01T13:18:51.000Z (over 7 years ago)
- Last Synced: 2024-11-11T06:12:26.396Z (about 2 months ago)
- Topics: concurrency, matrix, tools, travis, travis-ci
- Language: JavaScript
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# travis-after-modes
[![Build Status](https://travis-ci.org/DevVersion/travis-after-modes.svg?branch=master)](https://travis-ci.org/DevVersion/travis-after-modes)Travis CI After All Event Implementation
### Installation
- `npm install travis-after-modes --save-dev`### Configuration
```yml
after_success:
- ./scripts/ci/after-success.sh
``````bash
if $(npm bin)/travis-after-modes; then
echo "All travis modes passed"
else
echo "Some travis modes failed"
fi
```