Skip to content

Commit

Permalink
Adding ci support
Browse files Browse the repository at this point in the history
  • Loading branch information
bravecloud committed Aug 31, 2019
1 parent 22e99f3 commit f9f1acc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
language: node_js
node_js:
- "6"
script: npm run coverage
after_success: 'npm run coveralls'
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
[![npm version](https://badge.fury.io/js/%40aws-lambda%2Fflow.svg)](https://badge.fury.io/js/%40aws-lambda%2Fflow)
[![Build Status](https://travis-ci.org/bravecloud/aws-lambda-flow.svg?branch=master)](https://travis-ci.org/bravecloud/aws-lambda-flow)
[![Coverage Status](https://coveralls.io/repos/github/bravecloud/aws-lambda-flow/badge.svg?branch=master)](https://coveralls.io/github/bravecloud/aws-lambda-flow?branch=master)


# @aws-lambda/flow

A module for simplifying development with aws lambda by providing a pattern for modularizing the pre-processing that typically takes place before core business logic is executed (e.g. initialization, authentication/authorization, http header injection...etc.)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-lambda/flow",
"version": "0.0.3",
"version": "0.0.4",
"description": "A module for simplifying development with aws lambda by providing a pattern for modularizing the pre-processing that typically takes place before core business logic is executed (e.g. initialization, authentication/authorization, http header injection...etc.)",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit f9f1acc

Please sign in to comment.