Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update config.yml (#981)

authored by

Andy Richardson and committed by
GitHub
e93d1800 e6ac0e37

+10 -5
+10 -5
.circleci/config.yml
··· 7 7 8 8 jobs: 9 9 setup: 10 + working_directory: /mnt/ramdisk 10 11 executor: node 11 12 steps: 12 13 - checkout ··· 20 21 name: Install Packages 21 22 command: yarn --frozen-lockfile --non-interactive 22 23 - save_cache: 23 - key: module_cache-{{ checksum "yarn.lock" }} 24 + key: module_cache-v1-{{ checksum "yarn.lock" }} 24 25 paths: 25 26 - node_modules 26 27 27 28 check: 29 + working_directory: /mnt/ramdisk 28 30 executor: node 29 31 steps: 30 32 - checkout 31 33 - restore_cache: 32 34 keys: 33 - - module_cache-{{ checksum "yarn.lock" }} 35 + - module_cache-v1-{{ checksum "yarn.lock" }} 34 36 - run: 35 37 name: TypeScript 36 38 command: yarn run check ··· 42 44 command: yarn run lint 43 45 44 46 build: 47 + working_directory: /mnt/ramdisk 45 48 executor: node 46 49 parallelism: 4 47 50 steps: 48 51 - checkout 49 52 - restore_cache: 50 53 keys: 51 - - module_cache-{{ checksum "yarn.lock" }} 54 + - module_cache-v1-{{ checksum "yarn.lock" }} 52 55 - run: 53 56 name: Build 54 57 command: yarn run build 55 58 56 59 staging_site: 60 + working_directory: /mnt/ramdisk 57 61 executor: node 58 62 steps: 59 63 - checkout 60 64 - restore_cache: 61 65 keys: 62 - - module_cache-{{ checksum "yarn.lock" }} 66 + - module_cache-v1-{{ checksum "yarn.lock" }} 63 67 - run: 64 68 name: Build Staging Site 65 69 command: | ··· 72 76 node scripts/deploy/surge.js 73 77 74 78 production_site: 79 + working_directory: /mnt/ramdisk 75 80 executor: node 76 81 steps: 77 82 - run: ··· 80 85 - checkout 81 86 - restore_cache: 82 87 keys: 83 - - module_cache-{{ checksum "yarn.lock" }} 88 + - module_cache-v1-{{ checksum "yarn.lock" }} 84 89 - run: 85 90 name: Build Production Site 86 91 command: |