ci - run screenshotter

This commit is contained in:
kumavis 2018-03-30 01:01:16 -07:00
parent 0d27d27efa
commit b2f02300a3
1 changed files with 21 additions and 0 deletions

View File

@ -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