Skip to content

feat : 아티클 페이지, 상세 페이지 좋아요 상태 관리 및 프리미엄 아티클 구분 #513

feat : 아티클 페이지, 상세 페이지 좋아요 상태 관리 및 프리미엄 아티클 구분

feat : 아티클 페이지, 상세 페이지 좋아요 상태 관리 및 프리미엄 아티클 구분 #513

Workflow file for this run

name: CI
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Create .env file
run: |
touch .env
echo "${{ secrets.ENV_DEVELOPMENT }}" > .env
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '20'
- run: yarn
- run: yarn lint
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Create .env file
run: |
touch .env
echo "${{ secrets.ENV_DEVELOPMENT }}" > .env
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '20'
- run: yarn
- run: CI='false' yarn build