Skip to content

Feat: AddLinkInput UI 컴포넌트 구현, postLink 했을때 추가된 link가 보이도록 하는 로직 구현해야 함 #42

Feat: AddLinkInput UI 컴포넌트 구현, postLink 했을때 추가된 link가 보이도록 하는 로직 구현해야 함

Feat: AddLinkInput UI 컴포넌트 구현, postLink 했을때 추가된 link가 보이도록 하는 로직 구현해야 함 #42

Workflow file for this run

name: Linkbrary CI
on:
push:
branches:
- main # main 브랜치에 푸시될 때 실행
- develop
pull_request:
branches:
- develop # main 브랜치로의 PR이 생성될 때 실행
jobs:
lint-and-build:
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: "20.15.1" # 현재 사용 중인 Node.js 버전
- name: Install dependencies
run: npm install
- name: Run linter
run: npm run lint
- name: Build project
run: npm run build