|
2 | 2 | #
|
3 | 3 | # Check https://circleci.com/docs/2.0/language-javascript/ for more details
|
4 | 4 | #
|
5 |
| -version: 2 |
| 5 | +version: 2.1 |
| 6 | + |
| 7 | +defaults: &defaults |
| 8 | + working_directory: ~/project |
| 9 | + docker: |
| 10 | + - image: circleci/node:latest |
| 11 | + |
6 | 12 | jobs:
|
7 |
| - build: |
8 |
| - docker: |
9 |
| - # specify the version you desire here |
10 |
| - - image: circleci/node:10.15.2 |
11 | 13 |
|
12 |
| - # Specify service dependencies here if necessary |
13 |
| - # CircleCI maintains a library of pre-built images |
14 |
| - # documented at https://circleci.com/docs/2.0/circleci-images/ |
15 |
| - # - image: circleci/mongo:3.4.4 |
| 14 | + #------------------------------------------------------------ |
| 15 | + # 1. Install dependencies |
| 16 | + #------------------------------------------------------------ |
| 17 | + |
| 18 | + install-dependencies: |
| 19 | + <<: *defaults |
| 20 | + steps: |
| 21 | + - checkout |
| 22 | + |
| 23 | + - restore_cache: |
| 24 | + keys: |
| 25 | + - v1-deps-{{ checksum "yarn.lock" }} |
| 26 | + - v1-deps |
| 27 | + |
| 28 | + - run: |
| 29 | + name: 'Install dependencies' |
| 30 | + command: yarn --frozen-lockfile --non-interactive |
| 31 | + |
| 32 | + - save_cache: |
| 33 | + key: v1-deps-{{ checksum "yarn.lock" }} |
| 34 | + paths: |
| 35 | + - ~/.cache/yarn |
| 36 | + |
| 37 | + - persist_to_workspace: |
| 38 | + root: ~/project |
| 39 | + paths: |
| 40 | + - node_modules |
| 41 | + - packages/*/node_modules |
| 42 | + - packages/@vuepress/*/node_modules |
| 43 | + |
| 44 | + #------------------------------------------------------------ |
| 45 | + # 2. Run parallel jobs: |
| 46 | + # => lerna-boostrap |
| 47 | + # => tsc |
| 48 | + # => tests |
| 49 | + # => linter |
| 50 | + # => docs linter |
| 51 | + #------------------------------------------------------------ |
16 | 52 |
|
17 |
| - working_directory: ~/repo |
| 53 | + lerna-bootstrap: |
| 54 | + <<: *defaults |
| 55 | + steps: |
| 56 | + - checkout |
| 57 | + - attach_workspace: |
| 58 | + at: ~/project |
| 59 | + - run: |
| 60 | + name: 'Lerna bootstrap' |
| 61 | + command: yarn lerna:bootstrap |
| 62 | + |
| 63 | + run-tsc: |
| 64 | + <<: *defaults |
| 65 | + steps: |
| 66 | + - checkout |
| 67 | + - attach_workspace: |
| 68 | + at: ~/project |
| 69 | + - run: |
| 70 | + name: 'Run tsc' |
| 71 | + command: yarn tsc |
| 72 | + - persist_to_workspace: |
| 73 | + root: ~/project |
| 74 | + paths: |
| 75 | + - packages/@vuepress/shared-utils/lib |
18 | 76 |
|
| 77 | + run-tests: |
| 78 | + <<: *defaults |
19 | 79 | steps:
|
20 |
| - - checkout |
| 80 | + - checkout |
| 81 | + - attach_workspace: |
| 82 | + at: ~/project |
| 83 | + - run: |
| 84 | + name: 'Run tests' |
| 85 | + command: yarn test |
21 | 86 |
|
22 |
| - # Download and cache dependencies |
23 |
| - - restore_cache: |
24 |
| - keys: |
25 |
| - - v1-dependencies-{{ checksum "package.json" }} |
26 |
| - # fallback to using the latest cache if no exact match is found |
27 |
| - - v1-dependencies- |
| 87 | + run-linter-check: |
| 88 | + <<: *defaults |
| 89 | + steps: |
| 90 | + - checkout |
| 91 | + - attach_workspace: |
| 92 | + at: ~/project |
| 93 | + - run: |
| 94 | + name: 'Run linter' |
| 95 | + command: yarn lint:check |
| 96 | + |
| 97 | + run-docs-linter-check: |
| 98 | + <<: *defaults |
| 99 | + steps: |
| 100 | + - checkout |
| 101 | + - attach_workspace: |
| 102 | + at: ~/project |
| 103 | + - run: |
| 104 | + name: 'Run md linter' |
| 105 | + command: yarn workspace docs lint-md |
| 106 | + |
| 107 | + #------------------------------------------------------------ |
| 108 | + # 3. Build VuePress |
| 109 | + #------------------------------------------------------------ |
28 | 110 |
|
29 |
| - - run: yarn bootstrap |
| 111 | + build: |
| 112 | + <<: *defaults |
| 113 | + steps: |
| 114 | + - checkout |
| 115 | + - attach_workspace: |
| 116 | + at: ~/project |
| 117 | + - run: |
| 118 | + name: 'Run tests' |
| 119 | + command: yarn build |
30 | 120 |
|
31 |
| - - save_cache: |
32 |
| - paths: |
33 |
| - - node_modules |
34 |
| - key: v1-dependencies-{{ checksum "package.json" }} |
| 121 | +#------------------------------------------------------------ |
| 122 | +# Workflows |
| 123 | +#------------------------------------------------------------ |
35 | 124 |
|
36 |
| - # run tests! |
37 |
| - - run: yarn build && yarn lint && yarn test |
| 125 | +workflows: |
| 126 | + version: 2 |
| 127 | + build: |
| 128 | + jobs: |
| 129 | + - install-dependencies |
| 130 | + - lerna-bootstrap: { requires: [install-dependencies] } |
| 131 | + - run-linter-check: { requires: [install-dependencies] } |
| 132 | + - run-docs-linter-check: { requires: [install-dependencies] } |
| 133 | + - run-tsc: { requires: [install-dependencies] } |
| 134 | + - run-tests: { requires: [run-tsc] } |
| 135 | + - build: { requires: [run-tests, run-linter-check, run-docs-linter-check, lerna-bootstrap] } |
0 commit comments