File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 2121 with :
2222 node-version : ' 22.x'
2323
24- - name : Setup pnpm
25- uses : pnpm/action-setup@v4
26-
2724 - name : Cache node_modules
2825 uses : actions/cache/restore@v4
2926 with :
Original file line number Diff line number Diff line change @@ -19,16 +19,22 @@ jobs:
1919 runs-on : ubuntu-latest
2020 steps :
2121 - uses : actions/checkout@v4
22+
2223 - name : Setup Node.js
2324 uses : actions/setup-node@v4
2425 with :
2526 node-version : ' 22.x'
27+
28+ - name : Setup pnpm
29+ uses : pnpm/action-setup@v4
30+
2631 - uses : actions/cache@v4
2732 with :
2833 path : dist/
2934 key : ${{ runner.os }}-build-${{ hashFiles('**/pnpm-lock.yaml') }}
3035 restore-keys : |
3136 ${{ runner.os }}-build-
37+
3238 - run : pnpm install --frozen-lockfile --prefer-offline
3339
3440 build :
You can’t perform that action at this time.
0 commit comments