This repository was archived by the owner on May 5, 2024. It is now read-only.
File tree 4 files changed +6
-17
lines changed
4 files changed +6
-17
lines changed Original file line number Diff line number Diff line change 19
19
uses : " actions/checkout@v2.3.4"
20
20
with :
21
21
lfs : true
22
+ fetch-depth : 0
22
23
23
24
- id : " yarn-cache"
24
25
run : echo "::set-output name=dir::$(yarn cache dir)"
27
28
path : ${{ steps.yarn-cache.outputs.dir }}
28
29
key : ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
29
30
30
- - uses : " actions/cache@v2.1.5"
31
- with :
32
- path : " node_modules"
33
- key : ${{ runner.os }}-yarn-node-modules${{ hashFiles('**/yarn.lock') }}
34
-
35
31
- run : " yarn install --frozen-lockfile"
36
32
- run : " yarn lint"
37
33
- run : " yarn build"
Original file line number Diff line number Diff line change 17
17
uses : " actions/checkout@v2.3.4"
18
18
with :
19
19
lfs : true
20
+ fetch-depth : 0
20
21
21
22
- id : " yarn-cache"
22
23
run : echo "::set-output name=dir::$(yarn cache dir)"
25
26
path : ${{ steps.yarn-cache.outputs.dir }}
26
27
key : ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
27
28
28
- - uses : " actions/cache@v2.1.5"
29
- with :
30
- path : " node_modules"
31
- key : ${{ runner.os }}-yarn-node-modules${{ hashFiles('**/yarn.lock') }}
32
-
33
29
- run : " yarn install --frozen-lockfile"
34
30
- run : " yarn lint"
35
31
- run : " yarn build"
Original file line number Diff line number Diff line change 21
21
uses : " actions/checkout@v2.3.4"
22
22
with :
23
23
lfs : true
24
+ fetch-depth : 0
24
25
25
26
- id : " yarn-cache"
26
27
run : echo "::set-output name=dir::$(yarn cache dir)"
29
30
path : ${{ steps.yarn-cache.outputs.dir }}
30
31
key : ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
31
32
32
- - uses : " actions/cache@v2.1.5"
33
- with :
34
- path : " node_modules"
35
- key : ${{ runner.os }}-yarn-node-modules${{ hashFiles('**/yarn.lock') }}
36
-
37
33
- run : " yarn install --frozen-lockfile"
38
34
- run : " yarn lint"
39
35
- run : " yarn build"
Original file line number Diff line number Diff line change 19
19
"test" : " yarn jest --env=node --colors" ,
20
20
"build" : " lerna run build --stream" ,
21
21
"clean" : " lerna run clean --stream && rm -rf node_modules yarn-error.log" ,
22
- "reinstall" : " yarn clean; yarn install" ,
22
+ "reinstall" : " yarn clean; yarn install --frozen-lockfile " ,
23
23
"lint" : " lerna run lint --stream && yarn run lint:eslint && yarn run lint:prettier && yarn run lint:commits" ,
24
24
"lint:eslint" : " eslint --max-warnings=0 $npm_package_config_eslintPaths" ,
25
25
"lint:prettier" : " prettier --list-different $npm_package_config_prettierPaths" ,
54
54
},
55
55
"eslintIgnore" : [
56
56
" !.*.js"
57
- ]
57
+ ],
58
+ "dependencies" : {}
58
59
}
You can’t perform that action at this time.
0 commit comments