Skip to content

Move ZetaAI button to the search bar (#430) #204

Move ZetaAI button to the search bar (#430)

Move ZetaAI button to the search bar (#430) #204

Workflow file for this run

name: Check Broken Links
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install dependencies
run: yarn
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel env pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Build project
run: EXPORT=true yarn build
- name: Check for broken links
run: yarn check-links