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

Commit 0609dd4

Browse files
bors[bot]mythmon
andcommitted
Merge #6
6: CI r=mythmon a=mythmon * [x] Circle CI * [x] Bors Co-authored-by: Mike Cooper <[email protected]>
2 parents 018cb5a + 4964d5f commit 0609dd4

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

.circleci/config.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
version: 2
2+
3+
jobs:
4+
build_test:
5+
docker:
6+
- image: circleci/node:9
7+
8+
steps:
9+
- checkout
10+
11+
- restore_cache:
12+
keys:
13+
- yarn-cache-{{ checksum "yarn.lock" }}
14+
- yarn-cache-
15+
16+
- run:
17+
name: Yarn Install
18+
command: yarn install --cache-folder ~/.cache/yarn
19+
20+
- save_cache:
21+
key: yarn-cache-{{ checksum "yarn.lock" }}
22+
paths:
23+
- ~/.cache/yarn
24+
25+
- run:
26+
name: Build
27+
command: yarn build
28+
29+
- run:
30+
name: Test
31+
command: yarn test
32+
33+
workflows:
34+
version: 2
35+
pr:
36+
jobs:
37+
- build_test

bors.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
status = [
2+
"ci/circleci: build_test",
3+
]

0 commit comments

Comments
 (0)