From 48f4cc012dcb7084d51682c6539bda029c801363 Mon Sep 17 00:00:00 2001 From: Chris Helgert Date: Wed, 25 Jan 2017 20:01:25 +0100 Subject: [PATCH 1/2] add appveyor.yml --- .appveyor.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 0000000..9f55b33 --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,20 @@ +environment: + matrix: + - nodejs_version: "6" + - nodejs_version: "7" + +install: + - ps: Install-Product node $env:nodejs_version + - yarn install + +test_script: + - node --version + - npm --version + - npm test + +cache: + - node_modules + - "%LOCALAPPDATA%/Yarn" + +# Don't actually build. +build: off From 650efac6fc0a263376c2771b819ba289d07903bc Mon Sep 17 00:00:00 2001 From: Chris Helgert Date: Wed, 25 Jan 2017 20:03:42 +0100 Subject: [PATCH 2/2] add appveyor-badge --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index dcfc29f..4bf3941 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ [![npm version](https://badge.fury.io/js/react-handler.svg)](https://badge.fury.io/js/react-handler) [![Build Status](https://travis-ci.org/chrishelgert/react-handler.svg?branch=master)](https://travis-ci.org/chrishelgert/react-handler) +[![Build status](https://ci.appveyor.com/api/projects/status/c5qo9wa0n4uwakfj?svg=true)](https://ci.appveyor.com/project/chrishelgert/react-handler) [![codecov](https://codecov.io/gh/chrishelgert/react-handler/branch/master/graph/badge.svg)](https://codecov.io/gh/chrishelgert/react-handler) > A react-component for handling typical react/redux-states (loading, error, ...)