Skip to content

refactor: 불필요한 애니메이션 로직 제거 #5

refactor: 불필요한 애니메이션 로직 제거

refactor: 불필요한 애니메이션 로직 제거 #5

Workflow file for this run

name: Deploy to Vercel (Production)
on:
push:
branches:
- main
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
jobs:
test:
uses: ./.github/workflows/playwright-test.yml
deploy:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment (Production)
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project (Production)
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy to Vercel (Production)
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}