Skip to content

feat: 철봉 상세 페이지에 즐겨찾기 개수 표시 #1

feat: 철봉 상세 페이지에 즐겨찾기 개수 표시

feat: 철봉 상세 페이지에 즐겨찾기 개수 표시 #1

name: Deploy to Vercel (Preview)
on:
push:
branches-ignore:
- main
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
jobs:
test:
uses: ./.github/workflows/playwright-test.yml

Check failure on line 14 in .github/workflows/deploy-preview.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy-preview.yml

Invalid workflow file

error parsing called workflow ".github/workflows/deploy-preview.yml" -> "./.github/workflows/playwright-test.yml" (source branch with sha:2d3900a02f3167db6367c04cb4b49cbc28921764) : every step must define a `uses` or `run` key
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 (Preview)
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project (Preview)
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy to Vercel (Preview)
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}