Skip to content
This repository has been archived by the owner on Aug 1, 2021. It is now read-only.

Commit

Permalink
Merge pull request #23 from utkuufuk/hotfix
Browse files Browse the repository at this point in the history
Update Readme
  • Loading branch information
utkuufuk committed Aug 1, 2019
2 parents 498f95a + 974347f commit 127be71
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
22 changes: 13 additions & 9 deletions README.md
@@ -1,5 +1,5 @@
# Bomba CI
![version](https://img.shields.io/badge/version-0.5.0-blue.svg?cacheSeconds=2592000)
![version](https://img.shields.io/badge/version-0.5.1-blue.svg?cacheSeconds=2592000)

A simple server that carries out CI pipelines for your projects on GitHub.

Expand Down Expand Up @@ -41,15 +41,19 @@ Create a file called `bomba.yml` which might look like the following:
``` yml
env: '.env'
build:
- name: client
command: "docker-compose build client"
- name: server
command: "docker-compose build server"
- name: db
command: "docker-compose build db"
steps:
- name: client
command: "docker-compose build client"
- name: server
command: "docker-compose build server"
- name: db
command: "docker-compose build db"
test:
- name: server
command: "docker-compose up -d db && docker-compose run server npm run test && docker-compose down"
initialize: "docker-compose up -d db"
steps:
- name: server
command: "docker-compose run server npm run test"
finalize: "docker-compose down"
```

### Environment File
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "bomba-ci",
"version": "0.5.0",
"version": "0.5.1",
"description": "Simple CI server for GitHub projects",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 127be71

Please sign in to comment.