aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <542863+danfinlay@users.noreply.github.com>2018-03-27 02:57:30 +0800
committerGitHub <noreply@github.com>2018-03-27 02:57:30 +0800
commitad2c3093e0a0ea3c1a374323e9d4271af2456705 (patch)
treea33bb53bdf572d0d543cc5fac06e37a14aae99b0
parentb2f454a03ca6f2ce98c494aa4e77aa8aaa82bf8c (diff)
parent000edc8fd27f5c8bd3ca9f69e54df5a0929463e7 (diff)
downloadtangerine-wallet-browser-ad2c3093e0a0ea3c1a374323e9d4271af2456705.tar.gz
tangerine-wallet-browser-ad2c3093e0a0ea3c1a374323e9d4271af2456705.tar.zst
tangerine-wallet-browser-ad2c3093e0a0ea3c1a374323e9d4271af2456705.zip
Merge pull request #3665 from MetaMask/ci-build
Ci - introduce a build job
-rw-r--r--.circleci/config.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index c14909783..bcc9a299f 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -6,6 +6,9 @@ workflows:
jobs:
- prep-deps-npm
- prep-deps-firefox
+ - build:
+ requires:
+ - prep-deps-npm
- prep-scss:
requires:
- prep-deps-npm
@@ -200,3 +203,17 @@ jobs:
- run:
name: test:integration:mascara
command: npm run test:mascara
+
+ build:
+ docker:
+ - image: circleci/node:8-browsers
+ steps:
+ - checkout
+ - restore_cache:
+ key: dependency-cache-{{ checksum "package-lock.json" }}
+ - run:
+ name: build:dist
+ command: npm run dist
+ - run:
+ name: build:debug
+ command: find dist/ -type f -exec md5sum {} \; | sort -k 2