File tree Expand file tree Collapse file tree 1 file changed +11
-12
lines changed
Expand file tree Collapse file tree 1 file changed +11
-12
lines changed Original file line number Diff line number Diff line change @@ -27,23 +27,22 @@ jobs:
2727 with :
2828 version : 8
2929
30- - name : Setup Node.js
31- uses : actions/setup-node@v3
32- with :
33- node-version : ' 20' # Node.js 버전 20으로 변경
34-
35- - name : Install pnpm
36- run : npm install -g pnpm
37-
3830 - uses : actions/cache@v4
3931 id : cache
4032 with :
4133 path : |
42- node_modules
43- .pnpm-store
44- key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
34+ path: .turbo
35+ key : ${{ runner.os }}-turbo-${{ github.sha }}
4536 restore-keys : |
46- ${{ runner.os }}-pnpm-store-
37+ ${{ runner.os }}-turbo-
38+
39+ - name : Setup Node.js
40+ uses : actions/setup-node@v4
41+ with :
42+ node-version : ' 20'
43+
44+ - name : Install pnpm
45+ run : npm install -g pnpm
4746
4847 - name : Install dependencies
4948 run : |
You can’t perform that action at this time.
0 commit comments