Skip to content

Commit 95a5559

Browse files
authored
Replace Circle CI with Now CI (#46)
* Start using Now CI * Removed Circle CI * Better description * Different direction for marquee
1 parent 8e5122f commit 95a5559

File tree

4 files changed

+14
-28
lines changed

4 files changed

+14
-28
lines changed

.circleci/config.yml

-26
This file was deleted.

Dockerfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM mhart/alpine-node:10.7.0
2+
WORKDIR /usr/src
3+
COPY package.json .
4+
COPY yarn.lock .
5+
RUN yarn && yarn cache clean --force
6+
COPY . .
7+
8+
# Run tests
9+
RUN yarn test
10+
RUN mkdir /public && echo "<marquee direction="right">All tests passed!</marquee>" > /public/index.html

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
# async-retry
22

3-
[![Build Status](https://circleci.com/gh/zeit/async-retry.svg?&style=shield)](https://circleci.com/gh/zeit/workflows/async-retry)
43
[![Code Style](https://badgen.net/badge/code%20style/airbnb/fd5c63)](https://github.com/airbnb/javascript)
54
[![Join the community on Spectrum](https://withspectrum.github.io/badge/badge.svg)](https://spectrum.chat/zeit)
65

7-
Retrying made simple, easy, async.
6+
Retrying made simple, easy, and async.
87

98
## Usage
109

now.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"type": "static"
3+
}

0 commit comments

Comments
 (0)