Skip to content

Commit

Permalink
No Issue - Add semver to npm install on CircleCi
Browse files Browse the repository at this point in the history
  • Loading branch information
ksy36 committed Jul 4, 2023
1 parent 303da00 commit 63d5222
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- restore_cache:
keys:
- deps1-{{ .Branch }}-{{ checksum "config/requirements-dev.txt" }}
- v1.1-npm-{{ .Branch }}-{{ checksum "package.json" }}
- v1-npm-{{ .Branch }}-{{ checksum "package.json" }}
- run:
name: install python deps
command: |
Expand All @@ -36,11 +36,12 @@ jobs:
name: install npm deps
command: |
npm install
npm install semver
- save_cache:
paths:
- ./node_modules
key: v1.1-npm-{{ .Branch }}-{{ checksum "package.json" }}
key: v1-npm-{{ .Branch }}-{{ checksum "package.json" }}

- run:
name: Install latest Firefox
Expand Down

0 comments on commit 63d5222

Please sign in to comment.