Skip to content

🔨 Add check script #123

🔨 Add check script

🔨 Add check script #123

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: npm ci
- run: npm run convex:codegen
- run: npm run type-check
- run: npm run lint
- run: npm run build
env:
CONVEX_DEPLOYMENT: ${{ vars.CONVEX_DEPLOYMENT }}
NEXT_PUBLIC_CONVEX_URL: ${{ vars.NEXT_PUBLIC_CONVEX_URL }}
- uses: cypress-io/github-action@v6
env:
NEXT_PUBLIC_CONVEX_URL: ${{ vars.NEXT_PUBLIC_CONVEX_URL }}
with:
start: npm start