Files
website/.gitea/workflows/lint.yaml
T
Thilawyn d5191d6838
Build / build (push) Successful in 58s
Lint / lint (push) Failing after 13s
Pazisme Mod loading screen (#85)
Co-authored-by: Julien Valverdé <julien.valverde@mailo.com>
Co-authored-by: Renovate Bot <renovate-bot@valverde.cloud>
Reviewed-on: #85
2026-05-17 19:31:28 +02: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