Skip to content

fix : 모바일에서 차트 깨지던 현상 해결, ios 기기일 때 모바일 하단 넷바에 padding bottom 줌 (#370) #425

fix : 모바일에서 차트 깨지던 현상 해결, ios 기기일 때 모바일 하단 넷바에 padding bottom 줌 (#370)

fix : 모바일에서 차트 깨지던 현상 해결, ios 기기일 때 모바일 하단 넷바에 padding bottom 줌 (#370) #425

Workflow file for this run

name: Lint and Type Check
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Cache node modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
- name: Run TypeScript type check
run: npx tsc --noEmit
- name: Run ESLint
run: npm run lint