tty/.github/workflows/bun.yml
Raphael 3799d6f922 core(git/workflows): now the workflow will accept warning
- Since the last update the deprecated is write in the lib but not the
alternative yet
2025-11-25 15:25:44 +01:00

26 lines
477 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 .
- name: Build
run: bun run build