You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

33 lines
1.1 KiB

version: 2
defaults: &defaults
working_directory: ~/ledger-live-desktop
docker:
- image: circleci/node:8.11.3-stretch-browsers
jobs:
build:
<<: *defaults
steps:
- run: sudo apt-get update
- run: sudo apt-get install -y libudev-dev libusb-1.0-0-dev
- run:
name: Install latest yarn
command: |
curl -sS http://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - ;
echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list ;
sudo apt-get update && sudo apt-get install yarn
sudo rm /usr/local/bin/yarn # remove docker yarn
- checkout
- restore_cache:
keys:
- v12-yarn-packages-{{ checksum "yarn.lock" }}
- run: yarn install
- save_cache:
key: v12-yarn-packages-{{ checksum "yarn.lock" }}
paths:
- node_modules
- run: yarn lint
- run: ./node_modules/.bin/prettier -l "{src,webpack,.storybook,static/i18n}/**/*.js"
- run: yarn flow --quiet
- run: yarn test