Skip to content

Commit 8c6b03f

Browse files
authored
basic ci setup (#8)
* basic ci setup * stupid me * nits * remove 6.1 for now
1 parent 5ea04ec commit 8c6b03f

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
language: node_js
2+
node_js:
3+
- '4.3'
4+
after_success:
5+
- bash <(curl -s https://codecov.io/bash)

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# parse-files-utils
2+
[![Build Status](https://travis-ci.org/parse-server-modules/parse-files-utils.svg?branch=master)](https://travis-ci.org/parse-server-modules/parse-files-utils)
3+
[![codecov](https://codecov.io/gh/parse-server-modules/parse-files-utils/branch/master/graph/badge.svg)](https://codecov.io/gh/parse-server-modules/parse-files-utils)
4+
25
Utilities to list and migrate Parse files.
36

47
This utility will do the following:

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
"description": "Utilities to list and migrate Parse files",
55
"main": "index.js",
66
"scripts": {
7-
"start": "node index.js"
7+
"start": "node index.js",
8+
"test": "echo 'build some tests!' && exit 0",
9+
"posttest": "istanbul cover lib/*"
810
},
911
"repository": {
1012
"type": "git",
@@ -31,5 +33,8 @@
3133
"parse-server-gcs-adapter": "^1.0.0",
3234
"parse-server-s3-adapter": "^1.0.4",
3335
"request": "^2.72.0"
36+
},
37+
"devDependencies": {
38+
"istanbul": "^0.4.4"
3439
}
3540
}

0 commit comments

Comments
 (0)