Skip to content

docs: sync auth, CI API, tRPC routers, and dotenv Keys UI #13

docs: sync auth, CI API, tRPC routers, and dotenv Keys UI

docs: sync auth, CI API, tRPC routers, and dotenv Keys UI #13

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
env:
DATABASE_URL: postgresql://ci:ci@127.0.0.1:5432/ci
S3_BUCKET_NAME: ci-bucket
AWS_REGION: us-east-1
ENCRYPTION_KEY: "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run format:check
- run: npm run typecheck
- run: npm run test
- run: npm run build
- run: npm run build:github-action