Skip to content

feat: native TS parser, drop .py bridge 🐍🌉, restruc __tests__ #57

feat: native TS parser, drop .py bridge 🐍🌉, restruc __tests__

feat: native TS parser, drop .py bridge 🐍🌉, restruc __tests__ #57

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
quality:
runs-on: ubuntu-latest
env:
DATABASE_URL: postgresql://ci:ci@localhost:5432/ci
BETTER_AUTH_URL: http://localhost:3000
BETTER_AUTH_SECRET: ci-build-secret-ci-build-secret-ci-build-secret
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.11
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint
run: bun run lint
- name: Typecheck
run: bun run typecheck
- name: Test
run: bun run test
- name: Build
run: bun run build