File tree Expand file tree Collapse file tree 1 file changed +6
-19
lines changed Expand file tree Collapse file tree 1 file changed +6
-19
lines changed Original file line number Diff line number Diff line change @@ -16,32 +16,19 @@ jobs:
1616 - name : Checkout
1717 uses : actions/checkout@v5
1818
19- - name : Install Node.js 23.x
20- uses : actions/setup-node@v5
21- with :
22- node-version : 23.x
23- # registry-url required. Learn more at
24- # https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
25- registry-url : " https://registry.npmjs.org"
26-
2719 - uses : pnpm/action-setup@v4
2820 name : Install pnpm
2921 with :
3022 run_install : false
3123 package_json_file : ./apis/sdk/typescript/package.json
3224
33- - name : Get pnpm store directory
34- shell : bash
35- run : |
36- echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
37-
38- - uses : actions/cache@v4
39- name : Setup pnpm cache
25+ - name : Install Node.js 24.x
26+ uses : actions/setup-node@v5
4027 with :
41- path : ${{ env.STORE_PATH }}
42- key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
43- restore-keys : |
44- ${{ runner.os }}-pnpm-store-
28+ node-version : 24.x
29+ # registry-url required. Learn more at
30+ # https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
31+ registry-url : " https://registry.npmjs.org "
4532
4633 - name : Install dependencies
4734 run : pnpm install --frozen-lockfile
You can’t perform that action at this time.
0 commit comments