[FE] design: 캐러셀을 정가운데로 위치시킨 뒤, 자동 슬라이드 전환 시간을 6초로 설정한다. 그리고 전반적인 디자인을 수정한다. #265
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: Build test with Webpack | |
on: | |
pull_request: | |
branches: | |
- develop | |
paths: | |
- "frontend/**" | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "ci-group" | |
cancel-in-progress: false # NOTE: 기존 CI가 돌고 있는 상황에서 새 작업이 추가돼도 기존 작업 계속 수행 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout to current repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "yarn" | |
cache-dependency-path: ./frontend/yarn.lock | |
- name: Create .env file | |
run: echo "API_BASE_URL=${{ secrets.API_BASE_URL }}" > ./frontend/.env | |
- name: Set environment file permissions | |
run: chmod 644 ./frontend/.env | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
working-directory: frontend | |
- name: Run tests | |
run: yarn test | |
working-directory: frontend | |
- name: Build | |
run: yarn build | |
env: | |
API_BASE_URL: ${{ secrets.API_BASE_URL }} | |
working-directory: frontend |