Commit c4ee502 1 parent 4a77635 commit c4ee502 Copy full SHA for c4ee502
File tree 4 files changed +52
-6
lines changed
4 files changed +52
-6
lines changed Original file line number Diff line number Diff line change 23
23
uses : actions/setup-node@v1
24
24
with :
25
25
node-version : ${{ matrix.node-version }}
26
- - name : Install pnpm
27
-
26
+ - uses : pnpm/action-setup@v2
27
+ name : Install pnpm
28
+ id : pnpm-install
29
+ with :
30
+ run_install : false
31
+ - name : get pnpm store directory
32
+ id : pnpm-cache
33
+ shell : bash
34
+ run : |
35
+ echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
36
+ - uses : actions/cache@v3
37
+ name : setup pnpm cache
38
+ with :
39
+ path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
40
+ key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
41
+ restore-keys : |
42
+ ${{ runner.os }}-pnpm-store-
28
43
- name : Install
29
44
run : |
30
45
pnpm install --frozen-lockfile=false
Original file line number Diff line number Diff line change 24
24
uses : actions/setup-node@v2
25
25
with :
26
26
node-version : 16
27
- - name : install pnpm
28
-
27
+ - uses : pnpm/action-setup@v2
28
+ name : Install pnpm
29
+ id : pnpm-install
30
+ with :
31
+ run_install : false
32
+ - name : get pnpm store directory
33
+ id : pnpm-cache
34
+ shell : bash
35
+ run : |
36
+ echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
37
+ - uses : actions/cache@v3
38
+ name : setup pnpm cache
39
+ with :
40
+ path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
41
+ key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
42
+ restore-keys : |
43
+ ${{ runner.os }}-pnpm-store-
29
44
- name : install dependencies
30
45
run : pnpm install --frozen-lockfile=false
31
46
- name : create and publish versions
Original file line number Diff line number Diff line change 22
22
uses : actions/setup-node@v2
23
23
with :
24
24
node-version : 16
25
- - name : install pnpm
26
-
25
+ - uses : pnpm/action-setup@v2
26
+ name : Install pnpm
27
+ id : pnpm-install
28
+ with :
29
+ run_install : false
30
+ - name : get pnpm store directory
31
+ id : pnpm-cache
32
+ shell : bash
33
+ run : |
34
+ echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
35
+ - uses : actions/cache@v3
36
+ name : setup pnpm cache
37
+ with :
38
+ path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
39
+ key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
40
+ restore-keys : |
41
+ ${{ runner.os }}-pnpm-store-
27
42
- name : install dependencies
28
43
run : pnpm install --frozen-lockfile=false
29
44
- name : create and publish versions
Original file line number Diff line number Diff line change 2
2
"name" : " vsit-monorepo" ,
3
3
"version" : " 0.0.0" ,
4
4
"private" : true ,
5
+ "packageManager" :
" [email protected] " ,
5
6
"description" : " vsit monorepo" ,
6
7
"keywords" : [" vsit" ],
7
8
"license" : " MIT" ,
You can’t perform that action at this time.
0 commit comments