aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci/config.yml
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2018-03-30 16:01:16 +0800
committerkumavis <aaron@kumavis.me>2018-03-30 16:01:16 +0800
commitb2f02300a3ba098c84b385523aeaf1f09fe22f8e (patch)
treef5e4eb30864eabd5424f4fc03663dfbe679ea0fc /.circleci/config.yml
parent0d27d27efa31f614973e6e5cbc8f53cc85aa0bc2 (diff)
downloadtangerine-wallet-browser-b2f02300a3ba098c84b385523aeaf1f09fe22f8e.tar
tangerine-wallet-browser-b2f02300a3ba098c84b385523aeaf1f09fe22f8e.tar.gz
tangerine-wallet-browser-b2f02300a3ba098c84b385523aeaf1f09fe22f8e.tar.bz2
tangerine-wallet-browser-b2f02300a3ba098c84b385523aeaf1f09fe22f8e.tar.lz
tangerine-wallet-browser-b2f02300a3ba098c84b385523aeaf1f09fe22f8e.tar.xz
tangerine-wallet-browser-b2f02300a3ba098c84b385523aeaf1f09fe22f8e.tar.zst
tangerine-wallet-browser-b2f02300a3ba098c84b385523aeaf1f09fe22f8e.zip
ci - run screenshotter
Diffstat (limited to '.circleci/config.yml')
-rw-r--r--.circleci/config.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index ae6f44c8a..ef08d4c48 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -19,6 +19,10 @@ workflows:
requires:
- prep-build
- prep-deps-npm
+ - test-screens:
+ requires:
+ - prep-build
+ - prep-deps-npm
- test-unit:
requires:
- prep-deps-npm
@@ -45,6 +49,7 @@ workflows:
- test-lint
- test-unit
- test-e2e
+ - test-screens
- test-integration-mascara-chrome
- test-integration-mascara-firefox
- test-integration-flat-chrome
@@ -145,6 +150,22 @@ jobs:
path: test-artifacts
destination: test-artifacts
+ test-screens:
+ docker:
+ - image: circleci/node:8-browsers
+ steps:
+ - checkout
+ - restore_cache:
+ key: dependency-cache-{{ checksum "package-lock.json" }}
+ - restore_cache:
+ key: build-cache-{{ .Revision }}
+ - run:
+ name: Test
+ command: npm run test:screens
+ - store_artifacts:
+ path: test-artifacts
+ destination: test-artifacts
+
test-unit:
docker:
- image: circleci/node:8-browsers