Skip to content

[Feat] 유저 차단 디자인 및 목록 적용 #122

[Feat] 유저 차단 디자인 및 목록 적용

[Feat] 유저 차단 디자인 및 목록 적용 #122

Workflow file for this run

name: Auto CI
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Vercel CLI (Vercel CLI 설치)
run: npm install -g vercel@latest
- name: Pull Vercel Environment Information (Vercel 원격 환경에서 환경 변수 및 프로젝트 설정을 가져오기)
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts (프로젝트 빌드)
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}