File tree Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -52,10 +52,30 @@ jobs:
5252 charts : ${{ steps.charts.outputs.release }}
5353 template : ${{ steps.template.outputs.release }}
5454 steps :
55- - name : Checkout repository
55+ - name : Checkout Repo
5656 uses : actions/checkout@v3
57+
58+ - name : Install pnpm
59+ uses : pnpm/action-setup@v3
60+ id : pnpm-install
5761 with :
58- fetch-depth : 0
62+ version : 9.5
63+
64+ - name : Setup Node
65+ uses : actions/setup-node@v3
66+ with :
67+ node-version : " 18.x"
68+ registry-url : " https://registry.npmjs.org"
69+ cache : pnpm
70+ cache-dependency-path : pnpm-lock.yaml
71+
72+ - name : Configure pnpm
73+ run : |
74+ pnpm config set auto-install-peers true
75+ pnpm config set exclude-links-from-lockfile true
76+
77+ - name : Install dependencies
78+ run : pnpm install --frozen-lockfile
5979
6080 - name : Check JavasScript SDK Release
6181 id : js
You can’t perform that action at this time.
0 commit comments