File tree 3 files changed +49
-38
lines changed
3 files changed +49
-38
lines changed Original file line number Diff line number Diff line change
1
+ # Javascript Node CircleCI 2.0 configuration file
2
+ #
3
+ # Check https://circleci.com/docs/2.0/language-javascript/ for more details
4
+ #
5
+ version : 2
6
+ jobs :
7
+ build :
8
+ docker :
9
+ - image : circleci/node:10.13
10
+ working_directory : ~/repo
11
+ steps :
12
+ - checkout
13
+
14
+ - restore_cache :
15
+ keys :
16
+ - v1-dependencies-{{ checksum "package.json" }}
17
+ # fallback to using the latest cache if no exact match is found
18
+ - v1-dependencies-
19
+
20
+ - run : yarn install --frozen-lockfile
21
+
22
+ - save_cache :
23
+ paths :
24
+ - node_modules
25
+ key : v1-dependencies-{{ checksum "package.json" }}
26
+
27
+ - run :
28
+ name : ' Lint'
29
+ command : yarn lint:ci --format junit -o __reports__/junit/eslint-results.xml
30
+ - run :
31
+ name : ' Test'
32
+ command : yarn test:ci --reporters default --reporters "jest-junit"
33
+ environment :
34
+ JEST_JUNIT_OUTPUT : ' __reports__/junit/jest-results.xml'
35
+ - run :
36
+ name : ' Publish coverage'
37
+ command : yarn codecov
38
+ - deploy :
39
+ name : ' Deploy'
40
+ command : yarn release
41
+
42
+ - store_test_results :
43
+ path : __reports__/junit
44
+ - store_artifacts :
45
+ path : __reports__/junit
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 17
17
"start" : " rollup --config --watch" ,
18
18
"build" : " rollup --config" ,
19
19
"create:component" : " foundry run plop component" ,
20
- "prerelease" : " yarn build && yarn size" ,
21
- "release" : " semantic-release" ,
22
20
"lint" : " foundry run eslint --fix --quiet \" src/**/*.js\" " ,
23
21
"lint:ci" : " foundry run eslint \" src/**/*.js\" " ,
24
22
"test" : " jest --watch" ,
25
- "test:ci" : " jest --coverage --runInBand" ,
23
+ "test:ci" : " jest --coverage --runInBand --ci " ,
26
24
"codecov" : " codecov" ,
27
- "size" : " size-limit"
25
+ "size" : " size-limit" ,
26
+ "prerelease" : " yarn build && yarn size" ,
27
+ "release" : " semantic-release"
28
28
},
29
29
"size-limit" : [
30
30
{
You can’t perform that action at this time.
0 commit comments