Skip to content

feat: 공용 모달 버튼 UI 구현 #11 #16

feat: 공용 모달 버튼 UI 구현 #11

feat: 공용 모달 버튼 UI 구현 #11 #16

Workflow file for this run

name: Lint and Build Test
on:
pull_request:
branches:
- develop
paths:
- '**/*.js'
- '**/*.jsx'
- '**/*.ts'
- '**/*.tsx'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Run Next.js Lint
run: npm run lint
- name: Run Build Test
run: npm run build