Skip to content

Commit 5b4209b

Browse files
committed
Add ci buttons
1 parent 036ecaa commit 5b4209b

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# gitkit
22

3+
[![NPM version](https://badge.fury.io/js/gitkit.svg)](http://badge.fury.io/js/gitkit)
4+
[![Linux Build Status](https://travis-ci.org/SamyPesse/gitkit-js.png?branch=master)](https://travis-ci.org/SamyPesse/gitkit-js)
5+
[![Windows Build status](https://ci.appveyor.com/api/projects/status/63nlflxcwmb2pue6?svg=true)](https://ci.appveyor.com/project/SamyPesse/gitkit-js)
6+
37
Pure JavaScript implementation of Git backed by immutable models and promises.
48

59
The goal is to provide both a low and high level API for manipulating Git repositories: read files, commit changes, edit working index, clone, push, fetch, etc.

appveyor.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Fix line endings in Windows. (runs before repo cloning)
2+
init:
3+
- git config --global core.autocrlf input
4+
5+
# Test against these versions of Node.js.
6+
environment:
7+
matrix:
8+
- nodejs_version: "5"
9+
- nodejs_version: "4"
10+
11+
# Install scripts. (runs after repo cloning)
12+
install:
13+
# Get the latest stable version of Node.js or io.js
14+
- ps: Install-Product node $env:nodejs_version
15+
# install modules
16+
- npm install
17+
18+
# Post-install test scripts.
19+
test_script:
20+
# Output useful info for debugging.
21+
- node --version
22+
- npm --version
23+
# run tests
24+
- npm test
25+
26+
# Don't actually build.
27+
build: off

0 commit comments

Comments
 (0)