Skip to content
This repository was archived by the owner on Mar 7, 2019. It is now read-only.

Commit 6d2b28f

Browse files
authored
Add appveyor for automatic tests (#7)
* add appveyor.yml * add appveyor-badge
1 parent 130aba2 commit 6d2b28f

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.appveyor.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
environment:
2+
matrix:
3+
- nodejs_version: "6"
4+
- nodejs_version: "7"
5+
6+
install:
7+
- ps: Install-Product node $env:nodejs_version
8+
- yarn install
9+
10+
test_script:
11+
- node --version
12+
- npm --version
13+
- npm test
14+
15+
cache:
16+
- node_modules
17+
- "%LOCALAPPDATA%/Yarn"
18+
19+
# Don't actually build.
20+
build: off

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
[![npm version](https://badge.fury.io/js/react-handler.svg)](https://badge.fury.io/js/react-handler)
44
[![Build Status](https://travis-ci.org/chrishelgert/react-handler.svg?branch=master)](https://travis-ci.org/chrishelgert/react-handler)
5+
[![Build status](https://ci.appveyor.com/api/projects/status/c5qo9wa0n4uwakfj?svg=true)](https://ci.appveyor.com/project/chrishelgert/react-handler)
56
[![codecov](https://codecov.io/gh/chrishelgert/react-handler/branch/master/graph/badge.svg)](https://codecov.io/gh/chrishelgert/react-handler)
67

78
> A react-component for handling typical react/redux-states (loading, error, ...)

0 commit comments

Comments
 (0)