Revert "Revert "Ci - introduce a build job""

This commit is contained in:
kumavis 2018-03-27 14:08:20 -07:00 committed by GitHub
parent 246287ff1c
commit e0d98e73e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions

View File

@ -6,6 +6,9 @@ workflows:
jobs:
- prep-deps-npm
- prep-deps-firefox
- build:
requires:
- prep-deps-npm
- prep-scss:
requires:
- prep-deps-npm
@ -217,3 +220,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