Skip to content
This repository was archived by the owner on Jan 5, 2023. It is now read-only.

Commit b930510

Browse files
committed
ADD circleci
1 parent 25c4e2b commit b930510

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.circleci/config.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
version: 2
2+
3+
jobs:
4+
build:
5+
docker:
6+
- image: circleci/node:10
7+
working_directory: ~/repo
8+
steps:
9+
- checkout
10+
- restore_cache:
11+
keys:
12+
- v1-dependencies-{{ checksum "package.json" }}
13+
- v1-dependencies-
14+
- run: yarn install
15+
- save_cache:
16+
paths:
17+
- node_modules
18+
key: v1-dependencies-{{ checksum "package.json" }}
19+
20+
- run: yarn compile
21+
22+
workflows:
23+
version: 2
24+
test:
25+
jobs:
26+
- build

.github/workflows/chromatic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- run: |
1111
yarn
1212
- run: |
13-
yarn build
13+
yarn compile
1414
- run: |
1515
yarn build-storybook
1616
- uses: chromaui/action@v1

0 commit comments

Comments
 (0)