Skip to content

Commit

Permalink
chore: do not run install with frozen lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
frontendphil committed Jul 27, 2018
1 parent 5f4839a commit e9e6f1b
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,8 @@ jobs:
- *restore_cache
- run:
name: Install Dependencies
command: yarn install --frozen-lockfile
- save_cache:
name: Save yarn cache
key: v1-yarn-{{ .Branch }}-{{ checksum "yarn.lock" }}
paths:
- .cache/yarn
command: yarn install

- save_cache:
name: Save node_modules cache
key: v1-node-{{ .Branch }}-{{ checksum "yarn.lock" }}
Expand All @@ -42,6 +38,7 @@ jobs:
- run:
name: Remove node_modules to cleanup workspace
command: rm -r node_modules/

- persist_to_workspace:
root: ~/project
paths:
Expand All @@ -63,7 +60,7 @@ jobs:
- *restore_cache
- run:
name: Test
command: yarn test:coverage
command: yarn test --coverage
- run:
name: Codecov
command: bash <(curl -s https://codecov.io/bash)
Expand Down

0 comments on commit e9e6f1b

Please sign in to comment.