Skip to content

Commit 6704972

Browse files
authored
Merge pull request #76 from ganderzz/feature/add-circle-ci-deployment
Fix deployment
2 parents 37d708a + c2565de commit 6704972

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.circleci/config.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,19 @@ jobs:
3232
- store_artifacts:
3333
path: ./coverage
3434

35-
- persist_to_workspace:
36-
root: ~/repo
37-
paths: .
38-
3935
deploy:
4036
<<: *defaults
4137
steps:
42-
- attach_workspace:
43-
at: ~/repo
38+
- checkout
39+
40+
- restore_cache:
41+
keys:
42+
- v1-dependencies-{{ checksum "package.json" }}
43+
# fallback to using the latest cache if no exact match is found
44+
- v1-dependencies-
45+
46+
- run: yarn install
47+
4448
- run:
4549
name: Authenticate with registry
4650
command: echo "//registry.npmjs.org/:_authToken=$npm_TOKEN" > ~/repo/.npmrc

0 commit comments

Comments
 (0)