Skip to content

Commit

Permalink
chore: circleci config update
Browse files Browse the repository at this point in the history
  • Loading branch information
adamberecz committed Jul 22, 2022
1 parent 0a69840 commit 7dce364
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ jobs:
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v2-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- v2-dependencies-

- run: npm install --legacy-peer-deps

- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
key: v2-dependencies-{{ checksum "package.json" }}

- run: npm run test:vue3

Expand Down

0 comments on commit 7dce364

Please sign in to comment.