From 9f6882b6514b4a34f9dcc732ef815beb20c263a0 Mon Sep 17 00:00:00 2001 From: kumavis Date: Wed, 21 Mar 2018 15:44:48 -0700 Subject: ci - add build step --- .circleci/config.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to '.circleci') diff --git a/.circleci/config.yml b/.circleci/config.yml index c14909783..b147200da 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,14 @@ 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: test:integration:mascara + command: npm run dist && find dist/ -type f -exec md5sum {} \; | sort -k 2 > dist_md5 && echo dist_md5 -- cgit