diff --git a/.circleci/config.yml b/.circleci/config.yml index e7d65e68..459d3eab 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 \ No newline at end of file + command: | + export PATH=$HOME/.deno/bin:$PATH + deno -A test.ts \ No newline at end of file diff --git a/README.md b/README.md index c2781fe3..ae56af4a 100644 --- a/README.md +++ b/README.md @@ -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)