Browse Source
Merge pull request #1660 from meriadec/fix-ci
Fix CI that was throwing because debian like removing its own libs
gre-patch-1
Gaëtan Renaudeau
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
0 additions and
3 deletions
-
.circleci/config.yml
-
src/components/CurrencyDownStatusAlert.js
|
|
@ -9,7 +9,6 @@ jobs: |
|
|
|
build: |
|
|
|
<<: *defaults |
|
|
|
steps: |
|
|
|
- run: sudo apt-get install -y libudev-dev libfuse-dev |
|
|
|
- run: |
|
|
|
name: Install latest yarn |
|
|
|
command: | |
|
|
@ -30,4 +29,3 @@ jobs: |
|
|
|
- run: ./node_modules/.bin/prettier -l "{src,webpack,.storybook,static/i18n}/**/*.js" |
|
|
|
- run: yarn flow --quiet |
|
|
|
- run: yarn test |
|
|
|
- run: yarn release |
|
|
|
|
|
@ -5,7 +5,6 @@ import { translate } from 'react-i18next' |
|
|
|
import styled from 'styled-components' |
|
|
|
import { connect } from 'react-redux' |
|
|
|
import { createStructuredSelector } from 'reselect' |
|
|
|
import type { CryptoCurrency } from '@ledgerhq/live-common/lib/types' |
|
|
|
|
|
|
|
import type { CurrencyStatus } from 'reducers/currenciesStatus' |
|
|
|
import { currencyDownStatus } from 'reducers/currenciesStatus' |
|
|
|