[BUG] 나의 토픽 > 스티커 수정시 드래그 핸들, 추가버튼이 모달 바깥에 노출되는 이슈 대응 #43
Workflow file for this run
This file contains hidden or 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: Check Build | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Create .env file | |
| run: | | |
| echo "${{ secrets.PROD_ENV }}" > .env | |
| - name: Enable Corepack & Prepare pnpm | |
| run: | | |
| corepack enable | |
| corepack prepare pnpm@latest --activate | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Build | |
| run: pnpm build --filter=web |