Skip to content

Commit b304ad7

Browse files
committed
#18 ci(fe): ci 순서 변경
1 parent eb420b0 commit b304ad7

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

.github/workflows/fe-build-check.yml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff 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: |

0 commit comments

Comments
 (0)