Skip to content

Commit

Permalink
ci: Use CircleCI (#17)
Browse files Browse the repository at this point in the history
* ci: fix

* Update config.yml

* Update config.yml

* Update config.yml

* Update config.yml

* Update config.yml

* Update README.md
  • Loading branch information
keroxp authored Aug 3, 2019
1 parent f29bee4 commit cfd86d9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@ version: 2
jobs:
build:
docker:
- image: debian:stretch
environment:
PATH: $HOME/:deno/bin:$PATH
- image: circleci/node:stretch
- image: circleci/redis:5-alpine
steps:
- checkout
- run:
name: Install Deno
command: curl -fsSL https://deno.land/x/install/install.sh | sh -s -- v0.13.0
command: |
curl -fsSL https://deno.land/x/install/install.sh | bash -s -- v0.13.0
- run:
name: Run Tests
command: deno -A test.ts
command: |
export PATH=$HOME/.deno/bin:$PATH
deno -A test.ts
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# deno-redis

[![Build Status](https://travis-ci.com/keroxp/deno-redis.svg?branch=master)](https://travis-ci.com/keroxp/deno-redis)
[![CircleCI](https://circleci.com/gh/keroxp/deno-redis.svg?style=svg)](https://circleci.com/gh/keroxp/deno-redis)
![https://img.shields.io/github/tag/keroxp/deno-redis.svg](https://img.shields.io/github/tag/keroxp/deno-redis.svg)
[![license](https://img.shields.io/github/license/keroxp/deno-redis.svg)](https://github.com/keroxp/deno-redis)
[![tag](https://img.shields.io/badge/deno__std-v0.12.0-green.svg)](https://github.com/denoland/deno_std)
Expand Down

0 comments on commit cfd86d9

Please sign in to comment.