Skip to content

Commit 7382806

Browse files
committed
Test using Circle CI
1 parent f15765f commit 7382806

File tree

2 files changed

+26
-4
lines changed

2 files changed

+26
-4
lines changed

.circleci/config.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/node:latest
6+
7+
working_directory: ~/repo
8+
9+
steps:
10+
11+
- checkout
12+
13+
- restore_cache:
14+
keys:
15+
- v1-dependencies-{{ checksum "package.json" }}
16+
# fallback to using the latest cache if no exact match is found
17+
- v1-dependencies-
18+
19+
- run: yarn
20+
21+
- save_cache:
22+
paths:
23+
- node_modules
24+
key: v1-dependencies-{{ checksum "package.json" }}
25+
26+
- run: yarn test

.travis.yml

-4
This file was deleted.

0 commit comments

Comments
 (0)