Skip to content

adjsut for brave

adjsut for brave #11

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
env:
SKIP_ENV_VALIDATION: "1"
APP_SECRET: ci-test-secret-minimum-32-chars
DATABASE_URL: postgres://ci:ci@localhost:5432/ci
NEXT_PUBLIC_BASE_URL: http://localhost:3000
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm test
- run: pnpm typecheck
- run: pnpm build