⚡️: 공용 카드 컴포넌트 cva 형식으로 수정 #371
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Workflow name | |
name: "CI Workflow" | |
# Event for the workflow | |
on: push | |
# List of jobs | |
jobs: | |
test: | |
# Operating System | |
runs-on: ubuntu-latest | |
# Job steps | |
steps: | |
- uses: actions/checkout@v3 # Checkout the repository code | |
- run: npm install # Install dependencies |