Skip to content

[Hotfix#0.4.1] 버그 수정, 디자인 수정 #59

[Hotfix#0.4.1] 버그 수정, 디자인 수정

[Hotfix#0.4.1] 버그 수정, 디자인 수정 #59

Workflow file for this run

name: Prettier & ESLint
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.16.0]
steps:
- uses: actions/checkout@v3
- name: Install
run: npm ci
- name: Run prettier:check
run: npm run prettier:check
- name: Run eslint:check
run: npm run lint:check
- name: Build
run: npm run build