Skip to content
This repository has been archived by the owner on Jul 14, 2022. It is now read-only.

Commit

Permalink
Fix bug causing sdk's devdeps not to install
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik-zeglen committed May 28, 2020
1 parent 38c2f1a commit 7beabfd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ jobs:
build:
working_directory: ~/app
docker:
- image: circleci/node:10.7.0-browsers
- image: circleci/node:12.16.3-browsers
steps:
- checkout
- run:
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
- dist/*
cypress/run:
docker:
- image: cypress/base:10
- image: cypress/base:12.16.2
environment:
TERM: xterm
parallelism: 1
Expand All @@ -45,6 +45,8 @@ jobs:
- restore_cache:
keys:
- cache-{{ .Branch }}-{{ checksum "package.json" }}
- run:
command: npm -v
- run:
name: Npm CI
command: npm ci
Expand Down
2 changes: 1 addition & 1 deletion src/components/MainMenu/MainMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ const MainMenu: React.FC = () => {
onClick={handleSignOut}
data-cy="mobileMenuLogoutLink"
>
<ReactSVG path={userImg} />
Log Out
</li>
</ul>
}
Expand Down

0 comments on commit 7beabfd

Please sign in to comment.