Skip to content
This repository has been archived by the owner on Mar 4, 2022. It is now read-only.

Commit

Permalink
Merge #6
Browse files Browse the repository at this point in the history
6: CI r=mythmon a=mythmon

* [x] Circle CI
* [x] Bors

Co-authored-by: Mike Cooper <mythmon@gmail.com>
  • Loading branch information
bors[bot] and mythmon committed Apr 23, 2018
2 parents 018cb5a + 4964d5f commit 0609dd4
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,37 @@
version: 2

jobs:
build_test:
docker:
- image: circleci/node:9

steps:
- checkout

- restore_cache:
keys:
- yarn-cache-{{ checksum "yarn.lock" }}
- yarn-cache-

- run:
name: Yarn Install
command: yarn install --cache-folder ~/.cache/yarn

- save_cache:
key: yarn-cache-{{ checksum "yarn.lock" }}
paths:
- ~/.cache/yarn

- run:
name: Build
command: yarn build

- run:
name: Test
command: yarn test

workflows:
version: 2
pr:
jobs:
- build_test
3 changes: 3 additions & 0 deletions bors.toml
@@ -0,0 +1,3 @@
status = [
"ci/circleci: build_test",
]

0 comments on commit 0609dd4

Please sign in to comment.