This repository was archived by the owner on Dec 5, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 10 files changed +1937
-328
lines changed Expand file tree Collapse file tree 10 files changed +1937
-328
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 5050 key : dependency-cache-{{ checksum "package-lock.json" }}
5151 paths :
5252 - ./node_modules
53+ analysis :
54+ docker :
55+ - image : webpackcontrib/circleci-node-base:latest
56+ steps :
57+ - checkout
58+ - restore_cache :
59+ key : dependency-cache-{{ checksum "package-lock.json" }}
60+ - run :
61+ name : Install Latest NPM.
62+ command : npm i -g npm@latest
63+ - run :
64+ name : NPM Install.
65+ command : npm ci
66+ - run :
67+ name : Run linting.
68+ command : npm run lint
69+ - run :
70+ name : Run NPM Audit.
71+ command : npm run security
72+ - run :
73+ name : Validate Commit Messages.
74+ command : npm run ci:lint:commits
5375 node6-latest :
5476 docker :
5577 - image : webpackcontrib/circleci-node6:latest
@@ -78,32 +100,10 @@ jobs:
78100 name : Submit coverage data to codecov.
79101 command : bash <(curl -s https://codecov.io/bash)
80102 when : on_success
81- node10 -canary :
103+ node6 -canary :
82104 docker :
83105 - image : webpackcontrib/circleci-node10:latest
84106 << : *canary_tests
85- analysis :
86- docker :
87- - image : webpackcontrib/circleci-node-base:latest
88- steps :
89- - checkout
90- - restore_cache :
91- key : dependency-cache-{{ checksum "package-lock.json" }}
92- - run :
93- name : Install Latest NPM.
94- command : npm i -g npm@latest
95- - run :
96- name : NPM Install.
97- command : npm ci
98- - run :
99- name : Run linting.
100- command : npm run lint
101- - run :
102- name : Run NPM Audit.
103- command : npm run security
104- - run :
105- name : Validate Commit Messages.
106- command : npm run ci:lint:commits
107107
108108workflows :
109109 version : 2
@@ -136,7 +136,7 @@ workflows:
136136 filters :
137137 tags :
138138 only : /.*/
139- - node10 -canary :
139+ - node6 -canary :
140140 requires :
141141 - analysis
142142 - node6-latest
Original file line number Diff line number Diff line change @@ -9,5 +9,5 @@ insert_final_newline = true
99trim_trailing_whitespace = true
1010
1111[* .md ]
12- insert_final_newline = false
12+ insert_final_newline = true
1313trim_trailing_whitespace = false
Original file line number Diff line number Diff line change @@ -19,4 +19,5 @@ Thumbs.db
1919.idea
2020.vscode
2121* .sublime-project
22- * .sublime-workspace
22+ * .sublime-workspace
23+ * .iml
Original file line number Diff line number Diff line change 99 - ' %APPDATA%\npm-cache'
1010environment :
1111 matrix :
12- - nodejs_version : ' 10 '
12+ - nodejs_version : ' 6 '
1313 webpack_version : latest
1414 job_part : test
1515 - nodejs_version : ' 8'
1616 webpack_version : latest
1717 job_part : test
18- - nodejs_version : ' 6 '
18+ - nodejs_version : ' 10 '
1919 webpack_version : latest
2020 job_part : test
21- - nodejs_version : ' 10 '
22- webpack_version : next
21+ - nodejs_version : ' 11 '
22+ webpack_version : latest
2323 job_part : test
24+ - nodejs_version : ' 6'
25+ webpack_version : next
26+ job_part : next
2427build : ' off'
2528matrix :
2629 fast_finish : true
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments