Skip to content

✅ Fix: install pytest and notebook tools directly #4

✅ Fix: install pytest and notebook tools directly

✅ Fix: install pytest and notebook tools directly #4

Workflow file for this run

name: Frontend CI & Deploy (Vercel)
on: [push, pull_request]
jobs:
build-frontend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: client
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install
- run: npm run lint
- run: npm run build
deploy-vercel:
runs-on: ubuntu-latest
needs: build-frontend
steps:
- 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: ./client