tty/.github/workflows/bun.yml
Raphaël de6c03ac1c core(git/action): removing the check on pr
The action have to be on every push so the double is useless
2025-11-23 00:48:52 +01:00

26 lines
494 B
YAML

name: CheckBuild
on:
push:
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