Files
Julien Valverdé b736140b48
Some checks failed
Publish / publish (push) Failing after 11s
Lint / lint (push) Failing after 8s
Add initial files
2025-12-28 14:30:54 +01:00

19 lines
395 B
YAML

name: Lint
run-name: Lint
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Clone repo
uses: actions/checkout@v6
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint TypeScript
run: bun lint:tsc
- name: Lint Biome
run: bun lint:biome