Bump deps (#184)

This commit is contained in:
Jaco Greeff
2019-08-09 16:14:30 +02:00
committed by GitHub
parent eecf76c521
commit 874d297b9d
8 changed files with 161 additions and 152 deletions
+24
View File
@@ -0,0 +1,24 @@
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-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