Skip to content

complete event swipe animation #83

complete event swipe animation

complete event swipe animation #83

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
- linkedin_issue
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies and build
run: |
cd ./client
npm ci
npm run build
env:
VITE_SECRET_KEY: ${{ secrets.VITE_SECRET_KEY }}
- name: Deploy to Vercel
uses: amondnet/vercel-action@v20
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }}
vercel-args: '--prod'