Created
July 18, 2019 21:41
-
-
Save krystofbe/5f0d2009a6b0b506923a35ced07f5043 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2 | |
jobs: | |
build: | |
docker: | |
- image: circleci/node:10.16.0 | |
working_directory: ~/app | |
steps: | |
- checkout | |
# Download and cache dependencies | |
- restore_cache: | |
keys: | |
- v1-dependencies-{{ checksum "package.json" }} | |
# fallback to using the latest cache if no exact match is found | |
- v1-dependencies- | |
- run: | |
name: Workaround for GoogleChrome/puppeteer#290 | |
command: "sh .circleci/setup_puppeteer.sh" | |
- run: yarn install | |
- save_cache: | |
paths: | |
- node_modules | |
key: v1-dependencies-{{ checksum "package.json" }} | |
- run: yarn test:integration |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment