fix: 설문 상세에서 파일 이름 가져오도록 코드 추가 #100
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: feature 브랜치 전용 빌드 테스트 | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| branches: | |
| - dev | |
| jobs: | |
| ci-feat: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the code | |
| uses: actions/checkout@v3 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: "20" # 프로젝트에서 사용하는 Node.js 버전에 맞게 설정 | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Build project | |
| run: npm run build # Vite로 프로젝트를 빌드 |