File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -20,20 +20,19 @@ jobs:
20
20
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
21
21
- name : Check out Code
22
22
uses : actions/checkout@v2
23
- - name : Get yarn cache directory path
24
- id : yarn-cache-dir-path
25
- run : echo "::set-output name=dir::$(yarn cache dir)"
26
23
- name : Cache node modules
27
24
id : yarn-cache
28
25
uses : actions/cache@v1
29
26
with :
30
- path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
27
+ path : |
28
+ node_modules
29
+ */*/node_modules
31
30
key : ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
32
31
restore-keys : |
33
32
${{ runner.os }}-yarn-
34
33
- name : Install Dependencies
35
34
if : steps.yarn-cache.outputs.cache-hit != 'true'
36
- run : yarn install
35
+ run : yarn --frozen-lockfile
37
36
env :
38
37
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
39
38
- name : Lint
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ This plugin adds some enhancements to @manfredsteyer [DDD](https://github.com/an
20
20
21
21
## Build Status
22
22
23
- ![ check] ( https://github.com/xmlking/nxp/workflows/check/badge.svg )
23
+ [ ![ check] ( https://github.com/xmlking/nxp/workflows/check/badge.svg )] ( https://github.com/xmlking/nxp/actions?query=workflow%3Acheck )
24
24
25
25
## Documentation
26
26
You can’t perform that action at this time.
0 commit comments