File tree Expand file tree Collapse file tree 1 file changed +29
-29
lines changed Expand file tree Collapse file tree 1 file changed +29
-29
lines changed Original file line number Diff line number Diff line change 1
1
version : 2
2
2
jobs :
3
- build :
4
- working_directory : ~/repo
5
- docker :
6
- - image : circleci/node:latest-browsers
7
- steps :
8
- - checkout
9
- - restore_cache :
10
- keys :
11
- - v1-dependencies-{{ checksum "package.json" }}
12
- - v1-dependencies-
13
- - run :
14
- name : Install dependencies
15
- command : yarn install
16
- - save_cache :
17
- key : v1-dependencies-{{ checksum "package.json" }}
18
- paths :
19
- - node_modules
20
- - run :
21
- name : Build library
22
- command : yarn run release
23
- - run :
24
- name : Run unit tests
25
- command : yarn run test:coverage
26
- - run :
27
- name : Run e2e tests
28
- command : yarn run test:e2e
29
- - run :
30
- name : Submit to Codecov
31
- command : yarn run codecov
3
+ build :
4
+ working_directory : ~/repo
5
+ docker :
6
+ - image : circleci/node:latest-browsers
7
+ steps :
8
+ - checkout
9
+ - restore_cache :
10
+ keys :
11
+ - v1-dependencies-{{ checksum "package.json" }}
12
+ - v1-dependencies-
13
+ - run :
14
+ name : Install dependencies
15
+ command : yarn install
16
+ - save_cache :
17
+ key : v1-dependencies-{{ checksum "package.json" }}
18
+ paths :
19
+ - node_modules
20
+ - run :
21
+ name : Build library
22
+ command : yarn run release
23
+ - run :
24
+ name : Run unit tests
25
+ command : yarn run test:coverage
26
+ - run :
27
+ name : Run e2e tests
28
+ command : yarn run test:e2e
29
+ - run :
30
+ name : Submit to Codecov
31
+ command : yarn run codecov
You can’t perform that action at this time.
0 commit comments