간단한 버그들 수정 및 스토리북 설정 추가 #10
Workflow file for this run
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: Vitest | |
on: | |
pull_request: | |
branches: "master" | |
types: [opened, reopened, synchronize] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "20.11.1" | |
- name: Install dependencies | |
run: yarn install # 종속성 설치 | |
- name: Run tests | |
run: yarn test # 테스트 실행 |