Skip to content

chore: 디자인 조정 #594

chore: 디자인 조정

chore: 디자인 조정 #594

Workflow file for this run

name: Frontend CI
on:
push:
paths:
- "frontend/**"
pull_request:
paths:
- "frontend/**"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Check file structure
run: ls -R
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
cache-dependency-path: "./frontend/yarn.lock"
- name: Install dependencies
working-directory: frontend
run: yarn install --frozen-lockfile
- name: Build project
working-directory: frontend
run: yarn build