Skip to content

feat: BLOG-75 게시글 렌더링방식 페이지네이션 -> 스크롤로 변경 #203

feat: BLOG-75 게시글 렌더링방식 페이지네이션 -> 스크롤로 변경

feat: BLOG-75 게시글 렌더링방식 페이지네이션 -> 스크롤로 변경 #203

Workflow file for this run

name: Preview Deployment
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
API_TOKEN: ${{secrets.API_TOKEN}}
on:
pull_request:
branches:
- main
- something
jobs:
Preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Install pnpm
run: npm install -g pnpm
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
# Install Dependencies
- name: Install Dependencies
run: pnpm install
- name: access to secrets
run: |
echo "API_TOKEN=$API_TOKEN" >> .env
# Run build
- name: Build Library
run: pnpm run build
- name: Build Project Artifacts
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}