tty/.github/workflows/bun.yml
Raphaël 13d950c99d
chore(workflow/bun): updating the checkbuild to be on all branches (#32)
- updating the workflow to be on all the branches (using the ** operator)
2025-08-18 19:36:11 +02:00

29 lines
538 B
YAML

name: CheckBuild
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
permissions:
contents: read
jobs:
build:
name: Build & Typecheck
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies (cached)
run: bun install --frozen-lockfile
- name: Check liniting
run: bunx eslint . --max-warnings=0
- name: Build
run: bun run build