Skip to content

feat: add Vercel Analytics, How It Works section, update live URL to … #12

feat: add Vercel Analytics, How It Works section, update live URL to …

feat: add Vercel Analytics, How It Works section, update live URL to … #12

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
frontend:
name: Frontend
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: frontend/package-lock.json
- run: npm ci
- run: npm run typecheck
- run: npm run lint
- run: npm run build