Skip to content

Fix: 정적 이미지 파일 public폴더로 변경 그에 따른 경로 수정 #7

Fix: 정적 이미지 파일 public폴더로 변경 그에 따른 경로 수정

Fix: 정적 이미지 파일 public폴더로 변경 그에 따른 경로 수정 #7

Workflow file for this run

name: CI
on: [pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '18'
- run: npm install
- run: npm run lint
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '18'
- run: npm install
- run: CI='false' npm run build