Skip to content

♻️ refactor: improve Popup component show/hide logic and update ESLin… #35

♻️ refactor: improve Popup component show/hide logic and update ESLin…

♻️ refactor: improve Popup component show/hide logic and update ESLin… #35

Workflow file for this run

name: Deploy Documentation
on:
push:
branches: [v3]
pull_request:
branches: [v3]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: |
yarn install --frozen-lockfile
yarn type-check
- name: Build documentation
run: |
yarn docs:build
env:
NODE_ENV: production
- name: Deploy to Vercel
uses: amondnet/vercel-action@v25
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }}
working-directory: ./
vercel-args: '--prod'
github-comment: true
github-deployment: false
if: github.ref == 'refs/heads/v3' && github.event_name == 'push'