Files
website/.gitea/workflows/lint.yaml
Renovate Bot 70ed094bf4
Some checks failed
Lint / lint (push) Failing after 6s
Build / build (pull_request) Failing after 18s
Update actions/checkout action to v6
2025-12-01 21:38:59 +01:00

20 lines
395 B
YAML

name: Lint
run-name: Lint
on:
push:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Set up Bun
uses: oven-sh/setup-bun@v2
- name: Checkout
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