Skip to content

Commit

Permalink
travis -> circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
luyilin committed Jan 22, 2018
1 parent d3507ab commit d30b77e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
@@ -1,7 +1,7 @@
# Maltose

[![Build Status](https://travis-ci.org/luyilin/Maltose.svg?branch=master)](https://travis-ci.org/luyilin/Maltose)
[![npm](https://img.shields.io/npm/dm/maltoses.svg)](https://www.npmjs.com/package/maltoses)
[![CircleCI](https://circleci.com/gh/luyilin/Maltose/tree/master.svg?style=shield)](https://circleci.com/gh/luyilin/Maltose/tree/master)

a cute emoticon keyboard which can generate random emoticon

Expand Down
21 changes: 21 additions & 0 deletions circle.yml
@@ -0,0 +1,21 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:7.10
working_directory: ~/repo

steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v1-dependencies-

- run: yarn install

- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: yarn test

0 comments on commit d30b77e

Please sign in to comment.