Skip to content

Commit

Permalink
workflow setting
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed Nov 9, 2024
1 parent 621b984 commit 2675f7f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/service-user.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,29 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
# 1. 리포지토리 체크아웃
- name: Check Out The Repository
uses: actions/checkout@v3

# 2. Node.js 환경 설정
- name: Set Up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'

# 3. Yarn 캐시 설정
- name: Cache Yarn Files
uses: actions/cache@v3
with:
path: |
~/.yarn/cache
.pnp.cjs
.yarnrc.yml
key: ${{ runner.os }}-yarn-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.os }}-yarn-
# 4. Docker 빌드 및 배포
- name: Deploy to xquare
uses: team-xquare/xquare-deployment-action@master
with:
Expand Down

0 comments on commit 2675f7f

Please sign in to comment.