Commit baec5f92 authored by Joe Ziemba's avatar Joe Ziemba
Browse files

33 run e2e in CI

parent 03839c50
......@@ -7,8 +7,8 @@ jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:14.16.1
- image: circleci/node:14.16.1-browsers
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
......@@ -22,9 +22,9 @@ jobs:
# Download and cache dependencies
- restore_cache:
keys:
- v2-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v2-dependencies-
- v2-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v2-dependencies-
- run: npm install
......@@ -32,9 +32,10 @@ jobs:
paths:
- node_modules
key: v2-dependencies-{{ checksum "package.json" }}
# run tests!
- run: npm test
- run: npm test:all
- run: npm run e2e:all
# build
- run: npm run build
\ No newline at end of file
- run: npm run build
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment