Skip to content

Commit 4ccc3e6

Browse files
committed
chore: add circleci config and readme badges
1 parent 9a0b7ed commit 4ccc3e6

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

.circleci/config.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Javascript Node CircleCI 2.0 configuration file
2+
#
3+
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
4+
#
5+
6+
default-test-config: &default-test-config
7+
working_directory: ~/repo
8+
steps:
9+
- checkout
10+
- restore_cache:
11+
key: dependencies-{{ checksum "yarn.lock" }}
12+
- run: yarn install
13+
- save_cache:
14+
paths:
15+
- node_modules
16+
key: dependencies-{{ checksum "yarn.lock" }}
17+
- run: yarn test
18+
19+
version: 2
20+
jobs:
21+
test-node-8:
22+
<<: *default-test-config
23+
docker:
24+
- image: circleci/node:8.9.4
25+
test-node-9:
26+
<<: *default-test-config
27+
docker:
28+
- image: circleci/node:9.5.0
29+
30+
workflows:
31+
version: 2
32+
test:
33+
jobs:
34+
- "test-node-8"
35+
- "test-node-9"

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# denali-typescript
22

3+
[![CircleCI](https://img.shields.io/circleci/project/github/denali-js/denali-typescript.svg?style=flat-square)](https://circleci.com/gh/denali-js/denali-typescript)
4+
[![Dependencies](https://img.shields.io/david/denali-js/denali-typescript.svg?style=flat-square)](https://david-dm.org/denali-js/denali-typescript)
5+
[![npm downloads](https://img.shields.io/npm/dm/denali-typescript.svg?style=flat-square)](https://www.npmjs.com/package/denali-typescript)
6+
![latest version](https://img.shields.io/npm/v/denali-typescript.svg?style=flat-square)
7+
38
Build your Denali app using Typescript! Just `$ denali install denali-typescript`
49
and you're good to go!
510

0 commit comments

Comments
 (0)