Skip to content

Commit 9c3c0d8

Browse files
authored
Merge pull request #14 from teitei-tk/setup_circleci
setup circleci config.yml
2 parents 3631824 + 49a4b1f commit 9c3c0d8

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

.circleci/config.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Javascript Node CircleCI 2.0 configuration file
2+
#
3+
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
4+
#
5+
version: 2
6+
jobs:
7+
build:
8+
docker:
9+
# specify the version you desire here
10+
- image: circleci/node:8.11
11+
12+
working_directory: ~/repo
13+
14+
steps:
15+
- checkout
16+
# Download and cache dependencies
17+
- restore_cache:
18+
keys:
19+
- v1-dependencies-{{ checksum "package.json" }}
20+
# fallback to using the latest cache if no exact match is found
21+
- v1-dependencies-
22+
23+
- run: yarn install
24+
25+
- save_cache:
26+
paths:
27+
- node_modules
28+
key: v1-dependencies-{{ checksum "package.json" }}
29+
30+
- run: yarn test:packages

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# bravia-mqtt-aws
22
Control Sony Bravia TV with MQTT over WebSocket using AWS IoT Device SDK
33

4+
[![CircleCI](https://circleci.com/gh/teitei-tk/bravia-mqtt-aws/tree/master.svg?style=svg)](https://circleci.com/gh/teitei-tk/bravia-mqtt-aws/tree/master)
5+
46
## Repository Structure
57
this repository is a using a monorepo pattern with lerna and yarn workspace.
68
put a each package in the ```packages``` directory

0 commit comments

Comments
 (0)