Skip to content

Commit

Permalink
Fabo/cache bust deps (#270)
Browse files Browse the repository at this point in the history
* changelog

* update node version in CI and cache bust deps

* changelog
  • Loading branch information
faboweb authored Jun 1, 2020
1 parent 6728df1 commit 8fdb4dd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,49 +7,49 @@ commands:
steps:
- restore_cache:
keys:
- v4-dependencies-root-{{ checksum "yarn.lock" }}
- v4-dependencies-root-
- v5-dependencies-root-{{ checksum "yarn.lock" }}
- v5-dependencies-root-

- run: yarn install
- save_cache:
paths:
- yarn.lock
- node_modules
key: v4-dependencies-root-{{ checksum "yarn.lock" }}
key: v5-dependencies-root-{{ checksum "yarn.lock" }}
npm-install-app:
description: '[NPM] update and install'
steps:
- restore_cache:
keys:
- v1-dependencies-app-root-{{ checksum "lunie/yarn.lock" }}
- v1-dependencies-app-root-
- v2-dependencies-app-root-{{ checksum "lunie/yarn.lock" }}
- v2-dependencies-app-root-

- run: cd lunie && npm install
- save_cache:
paths:
- lunie/node_modules
key: v1-dependencies-app-root-{{ checksum "lunie/yarn.lock" }}
key: v2-dependencies-app-root-{{ checksum "lunie/yarn.lock" }}

jobs:
pendingUpdated:
docker:
- image: circleci/node:10.15.3
- image: circleci/node:12.17.0
steps:
- checkout
- run: yarn add simsala
- run: node node_modules/simsala/src/cli.js check

lint:
docker:
- image: circleci/node:10.15.3
- image: circleci/node:12.17.0
steps:
- checkout
- yarn-install
- run: yarn run lint

testUnit:
docker:
- image: circleci/node:10.15.3
- image: circleci/node:12.17.0
steps:
- checkout
- yarn-install
Expand All @@ -73,7 +73,7 @@ jobs:

security:
docker:
- image: circleci/node:10.15.3
- image: circleci/node:12.17.0
steps:
- checkout
- run:
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
# Create release.
release:
docker:
- image: circleci/node:10.15.3
- image: circleci/node:12.17.0
steps:
- checkout
- run: |
Expand All @@ -174,7 +174,7 @@ jobs:
publish:
docker:
- image: circleci/node:10.15.3
- image: circleci/node:12.17.0
steps:
- checkout
- run:
Expand All @@ -183,7 +183,7 @@ jobs:
# deploy to the Chrome Web Store
deploy:
docker:
- image: circleci/node:10.15.3
- image: circleci/node:12.17.0
steps:
- checkout
- yarn-install
Expand Down
1 change: 1 addition & 0 deletions pending/develop
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[Fixed] Fixed balances not upating in ActionModal @faboweb
1 change: 1 addition & 0 deletions pending/fabo_cache-bust-deps
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[Fixed] Cache bust dependencies in CircleCI config @faboweb

0 comments on commit 8fdb4dd

Please sign in to comment.