Skip to content

fix: tighten username whitespace handling #71

fix: tighten username whitespace handling

fix: tighten username whitespace handling #71

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
jobs:
checks:
name: Run checks
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v7
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Check formatting
run: bun run format:check
- name: Lint
run: bun run lint
- name: Check
run: bun run check
- name: Build and test
run: bun run test
- name: Build deployment bundle
run: bunx wrangler deploy --config wrangler.jsonc --dry-run