Skip to content

Commit

Permalink
adding ci
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdothtml committed Sep 20, 2018
1 parent 232364e commit e00cb9e
Show file tree
Hide file tree
Showing 5 changed files with 307 additions and 3 deletions.
15 changes: 15 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
build: off
platform:
- x86
- x64
environment:
matrix:
- nodejs_version: '8'
- nodejs_version: '10'
install:
- ps: Install-Product node $env:nodejs_version x64
- yarn install
test_script:
- node --version
- yarn --version
- cmd: yarn test
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
language: node_js
os:
- linux
- osx
node_js:
- lts/*
- node
script: yarn test+coverage
after_success:
- yarn coveralls
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"repository": "github:chrisdothtml/gulp-local-cache",
"license": "MIT",
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard -v | snazzy",
"test": "ava",
"test+coverage": "nyc ava"
Expand All @@ -38,6 +39,7 @@
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.2",
"esm": "^3.0.84",
"fs-extra": "^7.0.0",
"gulp": "^3.9.1",
Expand Down
3 changes: 3 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# gulp-local-cache

[![StandardJS](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
[![travis-ci build status](https://api.travis-ci.org/chrisdothtml/gulp-local-cache.svg?branch=master)](https://travis-ci.org/chrisdothtml/gulp-local-cache/branches)
[![appveyor build status](https://ci.appveyor.com/api/projects/status/ghpfl69u4rtks0m2/branch/master?svg=true)](https://ci.appveyor.com/project/chrisdothtml/gulp-local-cache)
[![Coverage status](https://coveralls.io/repos/github/chrisdothtml/gulp-local-cache/badge.svg)](https://coveralls.io/github/chrisdothtml/gulp-local-cache)

> A gulp plugin that provides a persisted file cache
Expand Down
Loading

0 comments on commit e00cb9e

Please sign in to comment.