Skip to content

Commit b45c7ed

Browse files
authored
chore: use yarn workspaces (#1396)
1 parent 4dfe320 commit b45c7ed

File tree

8 files changed

+149098
-476
lines changed

8 files changed

+149098
-476
lines changed

.circleci/config.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,19 @@ node10Environment: &node10Environment
1010
aliases:
1111
- &restore_yarn_cache
1212
keys:
13-
- v2-yarn-cache-{{ checksum "yarn.lock" }}
13+
- v3-yarn-cache-{{ .Branch }}-{{ checksum "yarn.lock" }}
14+
- v3-yarn-cache-{{ .Branch }}
15+
- v3-yarn-cache
1416

1517
- &save_yarn_cache
16-
key: v2-yarn-cache-{{ checksum "yarn.lock" }}
18+
key: v3-yarn-cache-{{ .Branch }}-{{ checksum "yarn.lock" }}
1719
paths:
1820
- node_modules
1921
- ~/.cache/yarn
2022

2123
- &yarn_install
2224
name: Installing
23-
command: yarn install --pure-lockfile
25+
command: yarn --frozen-lockfile
2426

2527
- &unit_test
2628
name: Unit testing

0 commit comments

Comments
 (0)