✨ 신고하기 모달, 공통 컴포넌트(체크박스, 라디오) 구현, 피드 신고 모킹 API Handler 추가, Storybook 내 MSW 세팅 #49
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
name: install-and-test | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'warning' | |
tags: | |
description: 'Test scenario tags' | |
jobs: | |
install-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
run_install: false | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- name: Install node modules | |
run: pnpm install | |
- name: Lint | |
run: pnpm lint | |
- name: Unit & Integration test | |
run: pnpm test | |
storybook-deployment: | |
needs: install-and-test | |
uses: ./.github/workflows/storybook-deployment.yml | |
secrets: inherit |