Skip to content

[JOJI-845] 렌딩페이지 디자인 수정 #136

[JOJI-845] 렌딩페이지 디자인 수정

[JOJI-845] 렌딩페이지 디자인 수정 #136

Workflow file for this run

name: CI
on:
push:
branches: [main, development]
pull_request:
branches: [main, development]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.18.1]
steps:
- uses: actions/checkout@v4
- name: Node.js ${{ matrix.node-version }} 설정
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: 의존성 설치
run: npm ci
- name: 빌드
run: npm run build
timeout-minutes: 10
- name: 빌드 결과물 업로드
uses: actions/upload-artifact@v4
with:
name: build-output
path: .next/