Skip to content

Commit

Permalink
Deploy 재시도
Browse files Browse the repository at this point in the history
  • Loading branch information
yongseong2 committed Nov 6, 2024
1 parent b99615f commit ab93fad
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,13 @@ jobs:
- name: Checkout source code. # 레포지토리 체크아웃
uses: actions/checkout@main

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18'

- name: Cache node modules # node modules 캐싱
uses: actions/cache@v1
uses: uses: actions/cache@v3
with:
path: node_modules # 프로젝트의 node_modules가 있는 경로로 설정
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
Expand Down

0 comments on commit ab93fad

Please sign in to comment.