chore(test): replace Jest by Vitest (#15) #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Vercel Production Deployment | |
env: | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '*.json' | |
- 'packages/app/**' | |
jobs: | |
Deploy-Production: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
environment: production | |
concurrency: production | |
defaults: | |
run: | |
working-directory: packages/app | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Vercel CLI | |
run: npm i -g vercel@latest | |
- name: Pull Vercel environment | |
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} | |
- name: Build Project | |
run: | | |
export PUBLIC_URL=https://palabras-encadenadas.app/ | |
vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} | |
- name: Deploy | |
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }} |