mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-06-24 07:41:03 +00:00
00c15f35c0
* Add thin Ledger default wrapper * move showAddress confirmFlag * Add node hid support * export Ledger * addHardware * libusb dep for CircleCI * Cleanup typings (buffer expected)
28 lines
690 B
YAML
28 lines
690 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
branches:
|
|
ignore:
|
|
- gh-pages
|
|
working_directory: ~/polkadot-js
|
|
docker:
|
|
- image: circleci/node:10
|
|
steps:
|
|
- checkout
|
|
- restore_cache:
|
|
key: dependency-cache-{{ checksum "yarn.lock" }}
|
|
- run:
|
|
name: install-apt
|
|
command: sudo apt-get install libusb-1.0.0
|
|
- run:
|
|
name: install-deps
|
|
command: yarn install --frozen-lockfile
|
|
- save_cache:
|
|
key: dependency-cache-{{ checksum "yarn.lock" }}
|
|
paths:
|
|
- ./node_modules
|
|
- ~/.cache/yarn
|
|
- run:
|
|
name: build
|
|
command: yarn polkadot-dev-circleci-build
|