File tree Expand file tree Collapse file tree 1 file changed +18
-18
lines changed Expand file tree Collapse file tree 1 file changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -43,24 +43,24 @@ aliases:
43
43
- image : circleci/node:10-browsers
44
44
working_directory : ~/repo
45
45
- &setup_steps
46
- - *restore_git_cache
47
- - checkout
48
- - run : npm ci
46
+ - *restore_git_cache
47
+ - checkout
48
+ - run : npm ci
49
49
- &test_steps
50
- - run :
51
- name : Lint
52
- command : npm run test:lint -- --quiet --output-file test-results/eslint-results.xml --format junit
53
- - run :
54
- name : Unit
55
- environment :
56
- JEST_JUNIT_OUTPUT_NAME : unit-results.xml
57
- command : npm run test:unit -- --reporters="default" --reporters="jest-junit" --coverage --coverageReporters=text --coverageReporters=lcov --maxWorkers="2"
58
- - store_artifacts :
59
- path : coverage
50
+ - run :
51
+ name : Lint
52
+ command : npm run test:lint -- --quiet --output-file test-results/eslint-results.xml --format junit
53
+ - run :
54
+ name : Unit
55
+ environment :
56
+ JEST_JUNIT_OUTPUT_NAME : unit-results.xml
57
+ command : npm run test:unit -- --reporters="default" --reporters="jest-junit" --coverage --coverageReporters=text --coverageReporters=lcov --maxWorkers="2"
58
+ - store_artifacts :
59
+ path : coverage
60
60
- &build_steps
61
- - run :
62
- name : Build
63
- command : npm run build
61
+ - run :
62
+ name : Build
63
+ command : npm run build
64
64
65
65
jobs :
66
66
build-test-no-cache :
71
71
NODE_OPTIONS : --max-old-space-size=4000
72
72
steps :
73
73
*setup_steps
74
- << : *test_steps
75
- << : *build_steps
74
+ *test_steps
75
+ *build_steps
76
76
setup :
77
77
<< : *defaults
78
78
steps :
You can’t perform that action at this time.
0 commit comments