Skip to content

feat: 공통 컴포넌트 gnb 컴포넌트 UI 작성 #36

feat: 공통 컴포넌트 gnb 컴포넌트 UI 작성

feat: 공통 컴포넌트 gnb 컴포넌트 UI 작성 #36

Workflow file for this run

name: Lint
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint